# -*- coding: utf-8 -*- # Generated by Django 1.9.7 on 2016-09-16 16:33 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('wallets', '0015_auto_20160902_1904'), ] operations = [ migrations.AddField( model_name='withdraw', name='passport', field=models.CharField(default=0, max_length=50), preserve_default=False, ), migrations.AddField( model_name='withdraw', name='phone', field=models.CharField(default='+7 000 000 00 00', max_length=30), preserve_default=False, ), ]