parent
0ceac31dea
commit
9a3c9ab81a
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import migrations, models |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('customer', '0004_auto_20170521_1838'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AlterModelOptions( |
||||||
|
name='license', |
||||||
|
options={'verbose_name': 'Лицензии', 'verbose_name_plural': 'Лицензии'}, |
||||||
|
), |
||||||
|
migrations.AlterModelOptions( |
||||||
|
name='licenseprice', |
||||||
|
options={'verbose_name': 'Прайс на лицензии', 'verbose_name_plural': 'Прайсы на лицензии'}, |
||||||
|
), |
||||||
|
] |
||||||
Loading…
Reference in new issue