diff options
Diffstat (limited to 'app/pages/migrations')
-rw-r--r-- | app/pages/migrations/0006_page_enable_comments.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/pages/migrations/0006_page_enable_comments.py b/app/pages/migrations/0006_page_enable_comments.py new file mode 100644 index 0000000..25f1c7b --- /dev/null +++ b/app/pages/migrations/0006_page_enable_comments.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-08-22 13:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pages', '0005_auto_20190203_1434'), + ] + + operations = [ + migrations.AddField( + model_name='page', + name='enable_comments', + field=models.BooleanField(default=False), + ), + ] |