21 lines
525 B
Python
21 lines
525 B
Python
|
# Generated by Django 3.0.9 on 2020-08-03 17:07
|
||
|
|
||
|
from django.db import migrations
|
||
|
import easy_thumbnails.fields
|
||
|
import lostplaces_app.models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('lostplaces_app', '0009_place_submitted_when'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='placeimage',
|
||
|
name='filename',
|
||
|
field=easy_thumbnails.fields.ThumbnailerImageField(upload_to=lostplaces_app.models.generate_image_upload_path),
|
||
|
),
|
||
|
]
|