20 lines
511 B
Python
20 lines
511 B
Python
# Generated by Django 5.0.2 on 2024-03-14 02:46
|
|
|
|
import wagtail.blocks
|
|
import wagtail.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0007_blogtagindexpage'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='blogpage',
|
|
name='body',
|
|
field=wagtail.fields.StreamField([('paragraph', wagtail.blocks.RichTextBlock(blank=True))], blank=True, help_text='Write anything'),
|
|
),
|
|
]
|