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.
22 lines
745 B
22 lines
745 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2017-09-25 18:29
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('access', '0090_auto_20170918_0811'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Privilege',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('value', models.CharField(choices=[('r', 'Доступно для выполнению'), ('w', 'Ждёт ответа'), ('d', 'Выполнено')], default='r', max_length=1, verbose_name='Права')),
|
|
],
|
|
),
|
|
]
|
|
|