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.
36 lines
1.1 KiB
36 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0002_auto_20150329_0506'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='images',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='attributesinproduct',
|
|
name='product',
|
|
field=models.ForeignKey(related_name='product_attributes', verbose_name='Товар', to='store.Product'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageinproduct',
|
|
name='image',
|
|
field=models.ImageField(verbose_name='Картинка', upload_to='/Users/spacenergy/Programming/BatiskafENV/batiskaf/static/uploads'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageinproduct',
|
|
name='product',
|
|
field=models.ForeignKey(related_name='images', verbose_name='Товар', to='store.Product'),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Image',
|
|
),
|
|
]
|
|
|