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
912 B
30 lines
912 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-12-06 21:34
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('work_sell', '0019_auto_20161201_2003'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ElFormat',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=32)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Формат электронной версии',
|
|
},
|
|
),
|
|
migrations.AddField(
|
|
model_name='worksell',
|
|
name='el_format',
|
|
field=models.ManyToManyField(blank=True, related_name='work_sell', to='work_sell.ElFormat'),
|
|
),
|
|
]
|
|
|