You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
617 B
23 lines
617 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-10-05 21:27
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('taskapp', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='task',
|
|
options={'ordering': ('-id',)},
|
|
),
|
|
migrations.AddField(
|
|
model_name='task',
|
|
name='state',
|
|
field=models.CharField(choices=[('S', 'Новая'), ('C', 'На выполнении'), ('F', 'Выполнена')], default='S', max_length=1),
|
|
)
|
|
]
|