You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
713 B
25 lines
713 B
# Generated by Django 4.1.2 on 2022-10-13 00:31
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('choose', '0007_choice'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='choice',
|
|
name='votes',
|
|
field=models.ManyToManyField(related_name='voted_by', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='choice',
|
|
name='users',
|
|
field=models.ManyToManyField(related_name='chosen_by', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|
|
|