parent
cdee589e41
commit
7ceafb015f
11 changed files with 87 additions and 46 deletions
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-18 18:31 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('users', '0009_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='user', |
||||
name='gender', |
||||
field=models.CharField(blank=True, choices=[('male', 'Мужской'), ('female', 'Женский')], max_length=30, null=True), |
||||
), |
||||
] |
||||
@ -0,0 +1,25 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-18 18:31 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('wallets', '0006_transaction'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='transaction', |
||||
name='sum', |
||||
field=models.DecimalField(decimal_places=0, default=0, max_digits=20), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='transaction', |
||||
name='type', |
||||
field=models.CharField(choices=[('add', 'Пополнение'), ('reservation', 'Резервирование')], default='add', max_length=20), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue