22 lines
503 B
Python
22 lines
503 B
Python
|
# Generated by Django 2.2.17 on 2020-12-24 00:18
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("elections", "0006_election_sent_mail"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="election",
|
||
|
name="voters",
|
||
|
field=models.ManyToManyField(
|
||
|
related_name="cast_elections", to=settings.AUTH_USER_MODEL
|
||
|
),
|
||
|
),
|
||
|
]
|