Merge branch 'master' of http://code.brln.tv/diffusion/ARCH/archilance into artur
commit
ea9d8920c0
18 changed files with 197 additions and 32 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-30 13:40 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('wallets', '0009_transaction_stages_id'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='invoicehistory', |
||||
name='type', |
||||
field=models.CharField(choices=[('score', 'Счет'), ('history', 'История')], default='score', max_length=20), |
||||
), |
||||
] |
||||
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-31 10:23 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('wallets', '0010_auto_20160830_1640'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='withdraw', |
||||
name='complete', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue