# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2018-03-23 17:43 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('finance', '0003_auto_20180315_1358'), ] operations = [ migrations.AddField( model_name='bill', name='date', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Дата выставления'), preserve_default=False, ), ]