mirror of
https://github.com/Rushilwiz/ask-a-philosopher.git
synced 2025-04-17 18:50:17 -04:00
23 lines
548 B
Python
23 lines
548 B
Python
# Generated by Django 3.2.3 on 2021-06-01 04:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
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')),
|
|
('name', models.TextField(blank=True, null=True)),
|
|
('question', models.TextField()),
|
|
],
|
|
),
|
|
]
|