28 lines
772 B
Python
28 lines
772 B
Python
# 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:",
|
|
),
|
|
),
|
|
]
|