21 lines
653 B
Python
21 lines
653 B
Python
# Generated by Django 3.0.8 on 2020-07-28 07:38
|
|
|
|
from django.db import migrations
|
|
import django_thumbs.fields
|
|
import lostplaces_app.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lostplaces_app', '0004_auto_20200727_1803'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='placeimage',
|
|
name='filename',
|
|
field=django_thumbs.fields.ImageThumbsField(max_length=50, sizes=({'code': 'thumbnail', 'wxh': '390x390'}, {'code': 'hero', 'wxh': '700x700'}, {'code': 'large', 'wxh': '1920x1920'}), upload_to=lostplaces_app.models.generate_image_upload_path),
|
|
),
|
|
]
|