summaryrefslogtreecommitdiff
path: root/blog/migrations/0012_auto_20200314_1609.py
diff options
context:
space:
mode:
Diffstat (limited to 'blog/migrations/0012_auto_20200314_1609.py')
-rw-r--r--blog/migrations/0012_auto_20200314_1609.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/blog/migrations/0012_auto_20200314_1609.py b/blog/migrations/0012_auto_20200314_1609.py
new file mode 100644
index 0000000..bb7cf62
--- /dev/null
+++ b/blog/migrations/0012_auto_20200314_1609.py
@@ -0,0 +1,24 @@
+# Generated by Django 3.0.3 on 2020-03-14 16:09
+
+from django.db import migrations
+import wagtail.contrib.table_block.blocks
+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 = [
+ ('blog', '0011_auto_20200313_0421'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='blogpost',
+ name='body',
+ field=wagtail.core.fields.StreamField([('heading', wagtail.core.blocks.CharBlock(classname='full title')), ('paragraph', wagtail.core.blocks.RichTextBlock(features=['bold', 'italic', 'code', 'strikethrough', 'superscript', 'subscript', 'h2', 'h3', 'h4', 'h5', 'ol', 'ul', 'blockquote', 'hr', 'embed', 'link', 'document-link', 'image'])), ('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')), ('code', wagtail.core.blocks.StructBlock([('language', wagtail.core.blocks.ChoiceBlock(choices=[('python', 'python'), ('javascript', 'javascript'), ('css', 'css'), ('markup', 'markup'), ('html', 'html'), ('go', 'go'), ('bash', 'bash')])), ('text', wagtail.core.blocks.TextBlock())], label='Code')), ('table', wagtail.contrib.table_block.blocks.TableBlock(template='blog/table_template.html'))]),
+ ),
+ ]