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.
 
 
 
 
 

24 lines
1.1 KiB

# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-12-06 18:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('taskapp', '0005_auto_20161206_0013'),
]
operations = [
migrations.AlterField(
model_name='task',
name='mode',
field=models.CharField(choices=[('na', 'не выбрано'), ('yt', 'жёлтый треугольник'), ('rc', 'красный крестик'), ('ls', 'слабая скорость'), ('cf', 'обрыв кабеля'), ('cn', 'подключение'), ('pf', 'переодическое пропадание'), ('cr', 'настройка роутера'), ('co', 'настроить onu'), ('fc', 'обжать кабель'), ('ot', 'другое')], default='na', max_length=2),
),
migrations.AlterField(
model_name='task',
name='priority',
field=models.CharField(choices=[('A', 'Высший'), ('C', 'Средний'), ('E', 'Низкий')], default='E', max_length=1),
),
]