mirror of
https://github.com/pinry/pinry.git
synced 2026-02-25 15:51:09 +01:00
Fix: Add migration file for lastest version of django_images
This commit is contained in:
25
django_images/migrations/0002_auto_20180826_0814.py
Normal file
25
django_images/migrations/0002_auto_20180826_0814.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import core.utils
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('django_images', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='image',
|
||||
name='image',
|
||||
field=models.ImageField(upload_to=core.utils.upload_path, width_field='width', max_length=255, height_field='height'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='thumbnail',
|
||||
name='image',
|
||||
field=models.ImageField(upload_to=core.utils.upload_path, width_field='width', max_length=255, height_field='height'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user