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.
23 lines
698 B
23 lines
698 B
# Generated by Django 4.1.2 on 2022-10-12 22:18
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('choose', '0006_teatype_preferred'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Choice',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('choice', models.CharField(max_length=3000)),
|
|
('users', models.ManyToManyField(to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
]
|
|
|