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.
30 lines
996 B
30 lines
996 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
import store.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0003_auto_20150506_0553'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='category',
|
|
name='parent',
|
|
field=models.ForeignKey(null=True, blank=True, default=None, related_name='childs', to='store.Category'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageinproduct',
|
|
name='image',
|
|
field=store.models.SlugImageField(upload_to='/Users/spacenergy/Programming/BatiskafENV/batiskaf/batiskaf/static/uploads', verbose_name='Картинка'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='product',
|
|
name='categories',
|
|
field=models.ManyToManyField(related_name='products', to='store.Category', verbose_name='Категории'),
|
|
),
|
|
]
|
|
|