27 lines
829 B
Python
27 lines
829 B
Python
# Generated by Django 2.2.4 on 2019-10-02 14:56
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
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'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='image',
|
|
name='parent',
|
|
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_DEFAULT, related_name='children', to='gallery.Image', verbose_name='parent image'),
|
|
),
|
|
]
|