|
@@ -0,0 +1,27 @@
|
|
|
+# Generated by Django 2.0.9 on 2018-10-15 23:35
|
|
|
+
|
|
|
+import coderedcms.blocks.base_blocks
|
|
|
+from django.conf import settings
|
|
|
+from django.db import migrations, models
|
|
|
+import django.db.models.deletion
|
|
|
+import wagtail.contrib.table_block.blocks
|
|
|
+import wagtail.core.blocks
|
|
|
+import wagtail.core.fields
|
|
|
+import wagtail.documents.blocks
|
|
|
+import wagtail.images.blocks
|
|
|
+import wagtail.snippets.blocks
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('website', '0003_auto_20180912_1636'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='articlepage',
|
|
|
+ name='author',
|
|
|
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, verbose_name='Author'),
|
|
|
+ ),
|
|
|
+ ]
|