21 lines
508 B
Python
21 lines
508 B
Python
# Generated by Django 2.2.4 on 2019-10-23 12:07
|
|
|
|
from django.db import migrations
|
|
import easy_thumbnails.fields
|
|
import utils.methods
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gallery', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='image',
|
|
name='image',
|
|
field=easy_thumbnails.fields.ThumbnailerImageField(max_length=255, upload_to=utils.methods.image_path, verbose_name='Image file'),
|
|
),
|
|
]
|