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.
21 lines
758 B
21 lines
758 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2016-12-30 16:43
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('management', '0089_comment_markdown'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='modaltask',
|
|
name='user',
|
|
field=models.ManyToManyField(blank=True, editable=False, help_text='Как пользователь зайдет на сайт - отсюда он будет удален и будет создан журнал. ', related_name='task_user', to=settings.AUTH_USER_MODEL, verbose_name='Пользователи'),
|
|
),
|
|
]
|
|
|