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.
32 lines
1.0 KiB
32 lines
1.0 KiB
# Generated by Django 4.1 on 2022-08-30 01:35 |
|
|
|
from django.db import migrations, models |
|
import django.db.models.deletion |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
initial = True |
|
|
|
dependencies = [ |
|
] |
|
|
|
operations = [ |
|
migrations.CreateModel( |
|
name='Question', |
|
fields=[ |
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|
('question_text', models.CharField(max_length=200)), |
|
('pub_date', models.DateField(verbose_name='date published')), |
|
], |
|
), |
|
migrations.CreateModel( |
|
name='Choice', |
|
fields=[ |
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|
('choice_text', models.CharField(max_length=200)), |
|
('votes', models.IntegerField(default=0)), |
|
('question', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='polls.question')), |
|
], |
|
), |
|
]
|
|
|