From e4a380fd1543345c83fb4eb95786e7c9c8e2474d Mon Sep 17 00:00:00 2001 From: luxagraf Date: Thu, 22 Aug 2019 12:53:09 -0500 Subject: added comments option to pages --- app/pages/migrations/0006_page_enable_comments.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/pages/migrations/0006_page_enable_comments.py (limited to 'app/pages/migrations/0006_page_enable_comments.py') 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), + ), + ] -- cgit v1.2.3-70-g09d2