diff options
author | luxagraf <sng@luxagraf.net> | 2016-06-17 21:37:18 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-06-17 21:37:18 -0400 |
commit | 3f49776311bd21085f78c2acbd51f9edfe44f840 (patch) | |
tree | 1dcd00cd5384d71f655c36228c443da3de7707d1 /app/notes/migrations | |
parent | b658d4b38f1aab3ed1bdc629300392c1b3e9e8fa (diff) |
finished up notes builder
Diffstat (limited to 'app/notes/migrations')
-rw-r--r-- | app/notes/migrations/0006_auto_20160617_2058.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/notes/migrations/0006_auto_20160617_2058.py b/app/notes/migrations/0006_auto_20160617_2058.py new file mode 100644 index 0000000..8d32528 --- /dev/null +++ b/app/notes/migrations/0006_auto_20160617_2058.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-06-17 20:58 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('notes', '0005_auto_20160616_1445'), + ] + + operations = [ + migrations.RemoveField( + model_name='luxnote', + name='images', + ), + migrations.AddField( + model_name='luxnote', + name='status', + field=models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=0), + ), + ] |