diff --git a/uniweb/migrations/0002_auto_20200908_2354.py b/uniweb/migrations/0002_auto_20200908_2354.py new file mode 100644 index 0000000000000000000000000000000000000000..3395b824f4d235062463f79b1201e9536261b8f4 --- /dev/null +++ b/uniweb/migrations/0002_auto_20200908_2354.py @@ -0,0 +1,43 @@ +# Generated by Django 3.1.1 on 2020-09-08 21:54 + +import wagtail.core.blocks +import wagtail.core.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("uniweb", "0001_initial"), + ] + + operations = [ + migrations.AlterField( + model_name="uniwebhomepage", + name="top_menu", + field=wagtail.core.fields.StreamField( + [ + ( + "item", + wagtail.core.blocks.StructBlock( + [ + ("name", wagtail.core.blocks.CharBlock(label="název")), + ( + "page", + wagtail.core.blocks.PageChooserBlock( + label="stránka", + page_type=[ + "uniweb.UniwebHomePage", + "uniweb.UniwebFlexiblePage", + ], + ), + ), + ] + ), + ) + ], + blank=True, + verbose_name="horní menu", + ), + ), + ]