You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
728 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. import core.utils
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('django_images', '0001_initial'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='image',
  12. name='image',
  13. field=models.ImageField(upload_to=core.utils.upload_path, width_field='width', max_length=255, height_field='height'),
  14. ),
  15. migrations.AlterField(
  16. model_name='thumbnail',
  17. name='image',
  18. field=models.ImageField(upload_to=core.utils.upload_path, width_field='width', max_length=255, height_field='height'),
  19. ),
  20. ]