20 lines
401 B
Python
20 lines
401 B
Python
|
|
# Generated by Django 5.2.4 on 2025-07-19 05:13
|
||
|
|
|
||
|
|
import wagtail.fields
|
||
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('home', '0002_create_homepage'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='homepage',
|
||
|
|
name='body',
|
||
|
|
field=wagtail.fields.RichTextField(blank=True),
|
||
|
|
),
|
||
|
|
]
|