parent
d67ee6aa8e
commit
6a132cde5b
12 changed files with 105 additions and 31 deletions
@ -0,0 +1,19 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import models, migrations |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('accounts', '0004_auto_20160229_1409'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AddField( |
||||||
|
model_name='profile', |
||||||
|
name='sale', |
||||||
|
field=models.IntegerField(verbose_name='Индивидуальная скидка %', default=0), |
||||||
|
), |
||||||
|
] |
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue