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.2 on 2016-06-10 19:17
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0003_auto_20160610_1856'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='haed_description',
|
|
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0435'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='head_image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='library', verbose_name='\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='head_title',
|
|
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a'),
|
|
),
|
|
]
|
|
|