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.
31 lines
1.1 KiB
31 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-05-14 14:38
|
|
from __future__ import unicode_literals
|
|
|
|
import courses.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0008_auto_20180511_1208'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='big_image',
|
|
field=models.ImageField(blank=True, max_length=255, upload_to=courses.models.upload_big_image, verbose_name='Большое изображение'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='big_mobile_image',
|
|
field=models.ImageField(blank=True, help_text='Большая картинка для мобильной версии', max_length=255, upload_to=courses.models.upload_mobile_image, verbose_name='Под мобилку'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='image',
|
|
field=models.ImageField(blank=True, max_length=255, upload_to=courses.models.upload_image, verbose_name='Изображение'),
|
|
),
|
|
]
|
|
|