You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
feo-homepage/core/migrations/0010_eventpage_downloads.py

21 lines
663 B

# Generated by Django 2.2.15 on 2021-07-29 14:32
from django.db import migrations
import wagtail.blocks
import wagtail.fields
import wagtail.documents.blocks
class Migration(migrations.Migration):
dependencies = [
('core', '0009_auto_20200817_2130'),
]
operations = [
migrations.AddField(
model_name='eventpage',
name='downloads',
field=wagtail.fields.StreamField([('download', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=512, required=False)), ('flyer', wagtail.documents.blocks.DocumentChooserBlock(required=False))]))], blank=True, null=True),
),
]