18 lines
400 B
Python
18 lines
400 B
Python
# Generated by Django 5.0.6 on 2024-06-11 15:57
|
|
|
|
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),
|
|
),
|
|
]
|