summaryrefslogtreecommitdiff
path: root/home/migrations/0004_auto_20200306_0656.py
diff options
context:
space:
mode:
Diffstat (limited to 'home/migrations/0004_auto_20200306_0656.py')
-rw-r--r--home/migrations/0004_auto_20200306_0656.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/home/migrations/0004_auto_20200306_0656.py b/home/migrations/0004_auto_20200306_0656.py
new file mode 100644
index 0000000..604f118
--- /dev/null
+++ b/home/migrations/0004_auto_20200306_0656.py
@@ -0,0 +1,23 @@
+# Generated by Django 3.0.3 on 2020-03-06 06:56
+
+from django.db import migrations
+import wagtail.core.blocks
+import wagtail.core.fields
+import wagtail.documents.blocks
+import wagtail.embeds.blocks
+import wagtail.images.blocks
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('home', '0003_homepage_body'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='homepage',
+ name='body',
+ field=wagtail.core.fields.StreamField([('heading', wagtail.core.blocks.CharBlock(classname='full title')), ('paragraph', wagtail.core.blocks.RichTextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock()), ('page', wagtail.core.blocks.PageChooserBlock()), ('document', wagtail.documents.blocks.DocumentChooserBlock()), ('media', wagtail.embeds.blocks.EmbedBlock()), ('html', wagtail.core.blocks.RawHTMLBlock(label='Raw HTML'))]),
+ ),
+ ]