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.
86 lines
2.1 KiB
86 lines
2.1 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0005_auto_20150328_1452'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='attributeforcategory',
|
|
name='attribute',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='attributeforcategory',
|
|
name='category',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='attributesinproduct',
|
|
name='attribute',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='attributesinproduct',
|
|
name='product',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='category',
|
|
name='attributes',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='category',
|
|
name='parent',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='imageinproduct',
|
|
name='image',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='imageinproduct',
|
|
name='product',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='attirbutes',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='brand',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='categories',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='images',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Attribute',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='AttributeForCategory',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='AttributesInProduct',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Brand',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Category',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Image',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='ImageInProduct',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Product',
|
|
),
|
|
]
|
|
|