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

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-03 16:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('courses', '0005_auto_20171103_1540'),
]
operations = [
migrations.AlterField(
model_name='course',
name='big_image',
field=models.ImageField(blank=True, max_length=255, upload_to='course', verbose_name='Большое изображение'),
),
migrations.AlterField(
model_name='course',
name='big_mobile_image',
field=models.ImageField(blank=True, help_text='Большая картинка для мобильной версии', max_length=255, null=True, upload_to='course', verbose_name='Под мобилку'),
),
migrations.AlterField(
model_name='course',
name='image',
field=models.ImageField(blank=True, max_length=255, upload_to='course', verbose_name='Изображение'),
),
]