parent
db04c7d7d8
commit
e155a295c2
4 changed files with 51 additions and 4 deletions
@ -0,0 +1,32 @@ |
|||||||
|
# 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')), |
||||||
|
], |
||||||
|
), |
||||||
|
] |
@ -1,3 +1,13 @@ |
|||||||
from django.db import models |
from django.db import models |
||||||
|
|
||||||
|
|
||||||
# Create your models here. |
# Create your models here. |
||||||
|
class Question(models.Model): |
||||||
|
question_text = models.CharField(max_length=200) |
||||||
|
pub_date = models.DateField('date published') |
||||||
|
|
||||||
|
|
||||||
|
class Choice(models.Model): |
||||||
|
question = models.ForeignKey(Question, on_delete=models.CASCADE) |
||||||
|
choice_text = models.CharField(max_length=200) |
||||||
|
votes = models.IntegerField(default=0) |
||||||
|
Binary file not shown.
Loading…
Reference in new issue