parent
316356ceb9
commit
45a7bf49fd
1 changed files with 27 additions and 0 deletions
@ -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=''), |
||||||
|
), |
||||||
|
] |
||||||
Loading…
Reference in new issue