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.
31 lines
1.0 KiB
31 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2017-05-06 02:10
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django_resized.forms
|
|
import store.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0057_auto_20170306_1933'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='currency',
|
|
options={'ordering': ['pk'], 'verbose_name': 'валюта', 'verbose_name_plural': 'валюты'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='category',
|
|
name='image',
|
|
field=django_resized.forms.ResizedImageField(blank=True, default=None, null=True, upload_to=store.models.photo_filename, verbose_name='Картинка'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageinproduct',
|
|
name='image',
|
|
field=django_resized.forms.ResizedImageField(upload_to=store.models.photo_filename, verbose_name='Картинка'),
|
|
),
|
|
]
|
|
|