From 68152e6354d3a59352ab1a2fd4f408d40286ff76 Mon Sep 17 00:00:00 2001 From: quark Date: Mon, 11 Mar 2024 16:11:54 +0100 Subject: [PATCH] Upload New Migration (change bde) --- .../migrations/0007_auto_20240311_1549.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/treasury/migrations/0007_auto_20240311_1549.py diff --git a/apps/treasury/migrations/0007_auto_20240311_1549.py b/apps/treasury/migrations/0007_auto_20240311_1549.py new file mode 100644 index 00000000..64cc3acc --- /dev/null +++ b/apps/treasury/migrations/0007_auto_20240311_1549.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.28 on 2024-03-11 14:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('treasury', '0006_auto_20230414_1651'), + ] + + operations = [ + migrations.AlterField( + model_name='invoice', + name='bde', + field=models.CharField(choices=[('RavePartlist', 'RavePart[list]'), ('SecretStorlist', 'SecretStor[list]'), ('TotalistSpies', 'Tota[list]Spies'), ('Saperlistpopette', 'Saper[list]popette'), ('Finalist', 'Fina[list]'), ('Listorique', '[List]orique'), ('Satellist', 'Satel[list]'), ('Monopolist', 'Monopo[list]'), ('Kataclist', 'Katac[list]')], default='RavePartlist', max_length=32, verbose_name='BDE'), + ), + ]