add migrations
This commit is contained in:
parent
0fbec31d14
commit
777bd930c6
3 changed files with 72 additions and 0 deletions
22
calendrier/migrations/0003_auto_20210427_1834.py
Normal file
22
calendrier/migrations/0003_auto_20210427_1834.py
Normal file
|
@ -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",
|
||||
),
|
||||
),
|
||||
]
|
28
gestion/migrations/0005_auto_20210427_1834.py
Normal file
28
gestion/migrations/0005_auto_20210427_1834.py
Normal file
|
@ -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:",
|
||||
),
|
||||
),
|
||||
]
|
22
instruments/migrations/0002_auto_20210428_2138.py
Normal file
22
instruments/migrations/0002_auto_20210428_2138.py
Normal file
|
@ -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,
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue