diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-29 08:36:09 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-29 08:36:09 -0800 |
commit | 90df3ee03f3706bd79ba6d0f97c092d537ae612d (patch) | |
tree | 6709ea00eaf0ff46395428d45184487f49b7b936 /app/pages/migrations | |
parent | a8d5da5ca00d6aee75eee270bfa51f36b3a206f8 (diff) |
added option to not build a page
Diffstat (limited to 'app/pages/migrations')
-rw-r--r-- | app/pages/migrations/0004_page_build.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/pages/migrations/0004_page_build.py b/app/pages/migrations/0004_page_build.py new file mode 100644 index 0000000..f318e21 --- /dev/null +++ b/app/pages/migrations/0004_page_build.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-12-29 11:34 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pages', '0003_page_app'), + ] + + operations = [ + migrations.AddField( + model_name='page', + name='build', + field=models.BooleanField(default=True), + ), + ] |