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.
42 lines
1.7 KiB
42 lines
1.7 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-04-25 17:20
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0012_course_diploma_key'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='course',
|
|
name='diploma_key',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='course',
|
|
name='in_diploma',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='course',
|
|
name='out_diploma',
|
|
),
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='diploma_key',
|
|
field=models.IntegerField(default=0, help_text='\u0422\u043e\u043b\u044c\u043a\u043e \u0446\u0438\u0444\u0440\u044b, \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432', verbose_name='\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u043a\u043b\u044e\u0447'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
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='exam',
|
|
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'),
|
|
),
|
|
]
|
|
|