22 lines
571 B
Python
22 lines
571 B
Python
|
# Generated by Django 5.0.2 on 2024-02-11 11:56
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('primary', '0003_site_name'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Template',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(default='', max_length=200)),
|
||
|
('content', models.TextField()),
|
||
|
],
|
||
|
),
|
||
|
]
|