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.
 
 
 
 
 
 

24 lines
660 B

# -*- 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'),
),
]