21 lines
490 B
Python
21 lines
490 B
Python
# Generated by Django 2.2.4 on 2019-10-01 06:47
|
|
|
|
from django.db import migrations
|
|
import sorl.thumbnail.fields
|
|
import utils.methods
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gallery', '0002_auto_20190930_0714'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='image',
|
|
name='image',
|
|
field=sorl.thumbnail.fields.ImageField(upload_to=utils.methods.image_path, verbose_name='image file'),
|
|
),
|
|
]
|