28 lines
696 B
Python
28 lines
696 B
Python
|
# Generated by Django 2.2.19 on 2021-03-29 09:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("elections", "0014_matrix_rank"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="question",
|
||
|
name="type",
|
||
|
field=models.CharField(
|
||
|
choices=[
|
||
|
("assentiment", "Assentiment"),
|
||
|
("uninominal", "Uninominal"),
|
||
|
("condorcet", "Condorcet"),
|
||
|
],
|
||
|
default="assentiment",
|
||
|
max_length=11,
|
||
|
verbose_name="type de question",
|
||
|
),
|
||
|
),
|
||
|
]
|