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.
24 lines
644 B
24 lines
644 B
# Generated by Django 2.0.7 on 2019-09-25 17:23
|
|
|
|
from django.db import migrations
|
|
import project.utils.db
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0030_auto_20190809_0133'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='banner',
|
|
name='image',
|
|
field=project.utils.db.SafeImageField(upload_to=''),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageobject',
|
|
name='image',
|
|
field=project.utils.db.SafeImageField(upload_to='content/imageobject', verbose_name='Изображение'),
|
|
),
|
|
]
|
|
|