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.
51 lines
2.0 KiB
51 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0009_auto_20150526_1021'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='attribute',
|
|
options={'verbose_name_plural': 'атрибуты', 'verbose_name': 'атрибут'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='attributeforcategory',
|
|
options={'verbose_name_plural': 'атрибуты в категориях', 'verbose_name': 'атрибут в категории'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='attributesinproduct',
|
|
options={'verbose_name_plural': 'атрибуты в товарах', 'verbose_name': 'атрибут в товаре'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='brand',
|
|
options={'verbose_name_plural': 'бренды', 'verbose_name': 'бренд'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='category',
|
|
options={'verbose_name_plural': 'категории', 'verbose_name': 'категория'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='imageinproduct',
|
|
options={'verbose_name_plural': 'фото товаров', 'verbose_name': 'фото товара'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='product',
|
|
options={'verbose_name_plural': 'товары', 'verbose_name': 'товар'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='productvariation',
|
|
options={'verbose_name_plural': 'разновидности товаров', 'verbose_name': 'разновидность товара'},
|
|
),
|
|
migrations.AddField(
|
|
model_name='productvariation',
|
|
name='article',
|
|
field=models.CharField(max_length=32, blank=True, null=True, verbose_name='Артикул', default=''),
|
|
),
|
|
]
|
|
|