24 lines
591 B
Python
24 lines
591 B
Python
|
# Generated by Django 2.2.19 on 2021-03-19 15:13
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("elections", "0011_question_type"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="question",
|
||
|
name="type",
|
||
|
field=models.CharField(
|
||
|
choices=[("assentiment", "Assentiment"), ("uninominal", "Uninominal")],
|
||
|
default="assentiment",
|
||
|
max_length=11,
|
||
|
verbose_name="type de question",
|
||
|
),
|
||
|
),
|
||
|
]
|