mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-06 06:27:57 +00:00
25 lines
679 B
Python
25 lines
679 B
Python
# Generated by Django 3.2.8 on 2022-01-18 18:47
|
|
|
|
from django.db import migrations, models
|
|
import photo_log.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('photo_log', '0007_alter_photolog_slides'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='photo',
|
|
name='cropped_image',
|
|
field=models.ImageField(blank=True, null=True, upload_to=photo_log.models.get_cropped_photo_path),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='photo',
|
|
name='original_image',
|
|
field=models.ImageField(upload_to=photo_log.models.get_original_photo_path),
|
|
),
|
|
]
|