20 wiersze
401 B
Python
20 wiersze
401 B
Python
# Generated by Django 4.1.8 on 2023-04-23 13:34
|
|
|
|
from django.db import migrations
|
|
import wagtail.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('home', '0002_create_homepage'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='homepage',
|
|
name='body',
|
|
field=wagtail.fields.RichTextField(blank=True),
|
|
),
|
|
]
|