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.
20 lines
595 B
20 lines
595 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-08-14 17:36
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0020_auto_20160722_1831'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='article',
|
|
name='comments',
|
|
field=models.ManyToManyField(blank=True, null=True, to='management.Comment', verbose_name='\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438'),
|
|
),
|
|
]
|
|
|