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.
31 lines
1.0 KiB
31 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2016-10-20 20:48
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0036_auto_20161020_2047'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='date',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='Дата создания счета'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='finish_date',
|
|
field=models.DateTimeField(blank=True, editable=False, null=True, verbose_name='Дата завершения'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='status_changed',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='Дата смены статуса'),
|
|
),
|
|
]
|
|
|