diff options
author | luxagraf <sng@luxagraf.net> | 2018-05-09 09:39:48 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-05-09 09:39:48 -0400 |
commit | d2db3633ccdc70098b04eea25492327bcb82b685 (patch) | |
tree | 82f3dc2e7b8ef7a8fca3d7bb74232d70c36c5593 /app/notes/migrations/0006_auto_20160617_2058.py | |
parent | 1ac6c0b6fb2f0e0f8a92fbedf39eb39e7fa7676f (diff) |
Changed Notes app to be simpler
Diffstat (limited to 'app/notes/migrations/0006_auto_20160617_2058.py')
-rw-r--r-- | app/notes/migrations/0006_auto_20160617_2058.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/notes/migrations/0006_auto_20160617_2058.py b/app/notes/migrations/0006_auto_20160617_2058.py deleted file mode 100644 index 8d32528..0000000 --- a/app/notes/migrations/0006_auto_20160617_2058.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- 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), - ), - ] |