# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('news', '0002_auto_20150614_1756'), ] operations = [ migrations.AlterField( model_name='newscomment', name='email', field=models.EmailField(verbose_name='Email (не будет опубликован)', max_length=254), ), migrations.AlterField( model_name='newscomment', name='reply_to', field=models.ForeignKey(blank=True, null=True, to='news.NewsComment'), ), ]