# Generated by Django 3.0.8 on 2020-07-19 14:11

import core.models
from django.db import migrations
import wagtail.blocks
import wagtail.fields
import wagtail.images.blocks


class Migration(migrations.Migration):

    dependencies = [
        ('core', '0007_auto_20200702_1923'),
    ]

    operations = [
        migrations.AlterField(
            model_name='eventpage',
            name='tabs',
            field=wagtail.fields.StreamField([('sponsor_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('sponsors', wagtail.blocks.StreamBlock([('sponsor', wagtail.blocks.StructBlock([('name', wagtail.blocks.CharBlock(max_length=64)), ('logo', wagtail.images.blocks.ImageChooserBlock(required=False)), ('url', wagtail.blocks.URLBlock(required=False))])), ('headline', wagtail.blocks.CharBlock(max_length=64))]))])), ('richtext_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('content', wagtail.blocks.RichTextBlock())])), ('media_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('pre_content', wagtail.blocks.RichTextBlock(required=False)), ('media_file', core.models.MediaBlock(template='core/blocks/media_block.html')), ('autoplay', wagtail.blocks.BooleanBlock(label='Automatisch abspielen', required=False)), ('muted', wagtail.blocks.BooleanBlock(label='Stummgeschaltet starten', required=False)), ('post_content', wagtail.blocks.RichTextBlock(required=False))]))], blank=True, null=True),
        ),
    ]