parent
24737191c0
commit
f98fc63e92
8 changed files with 70 additions and 9 deletions
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.11.6 on 2017-11-07 11:04 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('finance', '0004_auto_20171106_1723'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='invoice', |
||||
name='is_open', |
||||
field=models.BooleanField(default=True, verbose_name='Открывает ли платёж курс'), |
||||
), |
||||
] |
||||
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.11.6 on 2017-11-07 11:11 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('storage', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='storage', |
||||
name='name', |
||||
field=models.CharField(blank=True, max_length=63, null=True, verbose_name='Видимое имя файла'), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue