18 lines
432 B
Python
18 lines
432 B
Python
# Generated by Django 3.2 on 2021-04-13 23:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("elections", "0020_alter_user_first_name"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="election",
|
|
name="vote_restrictions",
|
|
field=models.TextField(blank=True, verbose_name="conditions de vote"),
|
|
),
|
|
]
|