From 45a7bf49fd8a10155b667c57f745fa3a0accec98 Mon Sep 17 00:00:00 2001 From: Dmitriy Shesterkin Date: Sun, 21 May 2017 20:31:30 +0300 Subject: [PATCH] add migration --- .../migrations/0004_auto_20170521_1838.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/customer/migrations/0004_auto_20170521_1838.py 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=''), + ), + ]