mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-09 14:40:16 -04:00
26 lines
767 B
Python
Executable File
26 lines
767 B
Python
Executable File
# Generated by Django 3.1 on 2020-08-18 22:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Poll',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('question1', models.CharField(max_length=200)),
|
|
('question2', models.CharField(max_length=200)),
|
|
('question3', models.CharField(max_length=200)),
|
|
('askEmotion', models.BooleanField(default=True)),
|
|
('pub_date', models.DateTimeField(verbose_name='date published')),
|
|
],
|
|
),
|
|
]
|