You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
723 B
24 lines
723 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('docs', '0004_auto_20170609_0104'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='faktura',
|
|
name='government',
|
|
field=models.BooleanField(verbose_name='Госконтракт', default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='faktura',
|
|
name='government_description',
|
|
field=models.CharField(verbose_name='Идентификатор госконтракта, договора', max_length=256, blank=True, default=''),
|
|
),
|
|
]
|
|
|