kpsul/gestioncof/migrations/0015_psql_choices_niveaux.py

48 lines
1.7 KiB
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-07 22:18
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("gestioncof", "0014_cofprofile_mailing_unernestaparis")]
operations = [
migrations.AlterField(
model_name="petitcoursability",
name="niveau",
field=models.CharField(
choices=[
("college", "Collège"),
("lycee", "Lycée"),
("prepa1styear", "Prépa 1ère année / L1"),
("prepa2ndyear", "Prépa 2ème année / L2"),
("licence3", "Licence 3"),
("master1", "Master (1ère ou 2ème année)"),
("other", "Autre (préciser dans les commentaires)"),
],
max_length=12,
verbose_name="Niveau",
),
),
migrations.AlterField(
model_name="petitcoursdemande",
name="niveau",
field=models.CharField(
choices=[
("college", "Collège"),
("lycee", "Lycée"),
("prepa1styear", "Prépa 1ère année / L1"),
("prepa2ndyear", "Prépa 2ème année / L2"),
("licence3", "Licence 3"),
("master1", "Master (1ère ou 2ème année)"),
("other", "Autre (préciser dans les commentaires)"),
],
default="",
max_length=12,
verbose_name="Niveau",
),
),
]