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.
30 lines
1.1 KiB
30 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-06-10 00:03
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0027_price_modals'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bill',
|
|
name='fire_date_sent',
|
|
field=models.BooleanField(default=False, verbose_name='\u041f\u0438\u0441\u044c\u043c\u043e \u0441\u0433\u043e\u0440\u0430\u043d\u0438\u044f'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='bill',
|
|
name='start_fire',
|
|
field=models.DateTimeField(blank=True, null=True, verbose_name='\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u0433\u043e\u0440\u0430\u043d\u0438\u044f'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='bill',
|
|
name='start_fire_sent',
|
|
field=models.BooleanField(default=False, verbose_name='\u041f\u0438\u0441\u044c\u043c\u043e \u0441\u0433\u043e\u0440\u0430\u043d\u0438\u044f'),
|
|
),
|
|
]
|
|
|