ernestophone.ens.fr/calendrier/migrations/0006_auto_20210929_1629.py
2022-01-06 13:11:16 +01:00

41 lines
1.3 KiB
Python

# Generated by Django 2.2.24 on 2021-09-29 14:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("calendrier", "0005_auto_20210726_0949"),
]
operations = [
migrations.AddField(
model_name="participants",
name="instrument_autre",
field=models.CharField(blank=True, max_length=50, null=True),
),
migrations.AlterField(
model_name="participants",
name="instrument",
field=models.CharField(
blank=True,
choices=[
("Clarinette", "Clarinette"),
("Euphonium", "Euphonium"),
("Percussion", "Percussion"),
("Piccolo", "Piccolo"),
("Saxophone Alto", "Saxophone Alto"),
("Saxophone Ténor", "Saxophone Ténor"),
("Saxophone Baryton", "Saxophone Baryton"),
("Souba", "Souba"),
("Trombone", "Trombone"),
("Trompette", "Trompette"),
("Autre", "Autre"),
("ne sais pas", "Je ne sais pas encore"),
],
max_length=50,
null=True,
),
),
]