28 lines
709 B
Python
28 lines
709 B
Python
# Generated by Django 5.2.1 on 2025-05-15 16:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='FAQ',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=250)),
|
|
('content', models.CharField(max_length=800)),
|
|
],
|
|
options={
|
|
'verbose_name': 'FAQ',
|
|
'verbose_name_plural': 'FAQs',
|
|
'ordering': ['id'],
|
|
},
|
|
),
|
|
]
|