1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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),
),
]
|