blob: 478e324e23823d40db357c4af8845070e6b88420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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),
),
]
|