1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-10-05 07:32:29 +02:00

First step to re-write logic of SogeCredit validity

This commit is contained in:
Ehouarn
2025-09-28 22:13:52 +02:00
parent 4f6b1d5b6c
commit 5af69f719d
2 changed files with 30 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.6 on 2025-09-28 20:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('treasury', '0010_alter_invoice_bde'),
]
operations = [
migrations.AddField(
model_name='sogecredit',
name='valid',
field=models.BooleanField(blank=True, default=False, verbose_name='Valid'),
),
]