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.
25 lines
932 B
25 lines
932 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-04-25 15:50
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0010_remove_coursetheme_empty_description'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='course',
|
|
name='in_diploma',
|
|
field=models.ImageField(null=True, upload_to=b'diploma', verbose_name='\u0428\u0430\u0431\u043b\u043e\u043d \u0434\u0438\u043f\u043b\u043e\u043c\u0430'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='course',
|
|
name='out_diploma',
|
|
field=models.ImageField(null=True, upload_to=b'diploma', verbose_name='\u0428\u0430\u0431\u043b\u043e\u043d \u0434\u0438\u043f\u043b\u043e\u043c\u0430 c \u043f\u043e\u0434\u043f\u0438\u0441\u044c\u044e'),
|
|
),
|
|
]
|
|
|