diff --git a/src/customer/migrations/0004_auto_20170521_1838.py b/src/customer/migrations/0004_auto_20170521_1838.py new file mode 100644 index 0000000..2d3a503 --- /dev/null +++ b/src/customer/migrations/0004_auto_20170521_1838.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('customer', '0003_auto_20170508_2335'), + ] + + operations = [ + migrations.RemoveField( + model_name='bankaccount', + name='address', + ), + migrations.RemoveField( + model_name='client', + name='bank_address', + ), + migrations.AddField( + model_name='client', + name='bank_short_name', + field=models.CharField(verbose_name='Сокращенное наименование банка', max_length=256, blank=True, default=''), + ), + ]