diff options
author | luxagraf <sng@luxagraf.net> | 2016-06-17 21:44:00 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-06-17 21:44:00 -0400 |
commit | 51e8f53f3c773c06614b8b43b2b2f6a61c0a8194 (patch) | |
tree | e546f38ef461d291a99d2a2370c71db3c86c8186 /app/notes | |
parent | 3f49776311bd21085f78c2acbd51f9edfe44f840 (diff) |
added latest notes migration
Diffstat (limited to 'app/notes')
-rw-r--r-- | app/notes/migrations/0007_auto_20160617_2143.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/notes/migrations/0007_auto_20160617_2143.py b/app/notes/migrations/0007_auto_20160617_2143.py new file mode 100644 index 0000000..478e324 --- /dev/null +++ b/app/notes/migrations/0007_auto_20160617_2143.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-06-17 21:43 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('notes', '0006_auto_20160617_2058'), + ] + + operations = [ + migrations.AlterField( + model_name='luxnote', + name='status', + field=models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=1), + ), + ] |