parent
6aadae41c0
commit
8c501cf69d
5 changed files with 68 additions and 3 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,19 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0040_auto_20151123_1300'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='product', |
||||
name='priority', |
||||
field=models.IntegerField(default=0, verbose_name='Приоритет для главной'), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue