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.
30 lines
1.1 KiB
30 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2017-09-18 08:11
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('management', '0090_auto_20161230_1643'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='comment',
|
|
name='answers',
|
|
field=models.ManyToManyField(blank=True, editable=False, related_name='_comment_answers_+', to='management.Comment', verbose_name='Форумные ответы'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='comment',
|
|
name='replies',
|
|
field=models.ManyToManyField(blank=True, editable=False, related_name='_comment_replies_+', to='management.Comment', verbose_name='Ответы'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='faq',
|
|
name='comments',
|
|
field=models.ManyToManyField(blank=True, editable=False, to='management.Comment', verbose_name='Комментарии'),
|
|
),
|
|
]
|
|
|