diff options
author | luxagraf <sng@luxagraf.net> | 2019-08-22 12:53:09 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-08-22 12:53:09 -0500 |
commit | e4a380fd1543345c83fb4eb95786e7c9c8e2474d (patch) | |
tree | 3f5b2048ce7e87842482c1369f0df964546acdfd /app/pages/migrations/0006_page_enable_comments.py | |
parent | 83496f9d64763a81e96e25b4a486c2397c306b6c (diff) |
added comments option to pages
Diffstat (limited to 'app/pages/migrations/0006_page_enable_comments.py')
-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), + ), + ] |