22 lines
570 B
Python
22 lines
570 B
Python
# Generated by Django 5.0.4 on 2024-05-09 23:09
|
|
|
|
import wagtail.blocks
|
|
import wagtail.fields
|
|
import wagtail.images.blocks
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('events', '0006_alter_eventpage_featured_image_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='eventpage',
|
|
name='body',
|
|
field=wagtail.fields.StreamField([('paragraph', wagtail.blocks.RichTextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock())]),
|
|
),
|
|
]
|