# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-12-15 15:32 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('storage', '0002_auto_20171214_1908'), ] operations = [ migrations.AddField( model_name='comment', name='date', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Дата коментария'), preserve_default=False, ), ]