From 3f49776311bd21085f78c2acbd51f9edfe44f840 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Fri, 17 Jun 2016 21:37:18 -0400 Subject: finished up notes builder --- app/notes/migrations/0006_auto_20160617_2058.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/notes/migrations/0006_auto_20160617_2058.py (limited to 'app/notes/migrations') 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), + ), + ] -- cgit v1.2.3-70-g09d2