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.
26 lines
770 B
26 lines
770 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-10-13 11:18
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='section',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='library.ArticleSection', verbose_name='Раздел'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='tags',
|
|
field=models.ManyToManyField(blank=True, to='library.Tags', verbose_name='Теги'),
|
|
),
|
|
]
|
|
|