diff --git a/calendrier/migrations/0003_auto_20210427_1834.py b/calendrier/migrations/0003_auto_20210427_1834.py new file mode 100644 index 0000000..a490833 --- /dev/null +++ b/calendrier/migrations/0003_auto_20210427_1834.py @@ -0,0 +1,22 @@ +# Generated by Django 2.2.17 on 2021-04-27 18:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("calendrier", "0002_auto_20200714_1559"), + ] + + operations = [ + migrations.AlterField( + model_name="event", + name="desc_users_en", + field=models.TextField( + blank=True, + null=True, + verbose_name="Infos en anglais (visible seulement des fanfaron-ne-s", + ), + ), + ] diff --git a/gestion/migrations/0005_auto_20210427_1834.py b/gestion/migrations/0005_auto_20210427_1834.py new file mode 100644 index 0000000..f433a1d --- /dev/null +++ b/gestion/migrations/0005_auto_20210427_1834.py @@ -0,0 +1,28 @@ +# Generated by Django 2.2.17 on 2021-04-27 18:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("gestion", "0004_auto_20210331_2031"), + ] + + operations = [ + migrations.AlterField( + model_name="ernestouser", + name="trombonoscope", + field=models.CharField( + choices=[ + ("non", "Non"), + ("o_a", "Oui en tant que fanfaron actuel"), + ("o_v", "Oui en tant que vie·ille·ux"), + ], + default="non", + max_length=3, + null=True, + verbose_name="Je souhaite apparaitre dans le trombonoscope:", + ), + ), + ] diff --git a/instruments/migrations/0002_auto_20210428_2138.py b/instruments/migrations/0002_auto_20210428_2138.py new file mode 100644 index 0000000..ec847e4 --- /dev/null +++ b/instruments/migrations/0002_auto_20210428_2138.py @@ -0,0 +1,22 @@ +# Generated by Django 2.2.17 on 2021-04-28 21:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("instruments", "0001_initial"), + ] + + operations = [ + migrations.AlterField( + model_name="instrument", + name="statut", + field=models.CharField( + choices=[("Disponible", "Disponible"), ("Prêté", "Prêté·e")], + default="Disponible", + max_length=100, + ), + ), + ]