parent
ab1db756f1
commit
4239b704c2
2 changed files with 21 additions and 1 deletions
@ -0,0 +1,19 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0011_auto_20150608_0544'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='category', |
||||
name='priority', |
||||
field=models.IntegerField(verbose_name='Приоритет', default=0), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue