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.
21 lines
579 B
21 lines
579 B
# Generated by Django 2.0.7 on 2018-12-04 11:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0022_auto_20180815_2129'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='FAQ',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('question', models.TextField(max_length=1000)),
|
|
('answer', models.TextField(max_length=1000)),
|
|
],
|
|
),
|
|
]
|
|
|