# -*- coding: utf-8 -*- # Generated by Django 1.9.3 on 2016-11-24 02:50 from __future__ import unicode_literals from django.db import migrations, models import precise_bbcode.fields class Migration(migrations.Migration): dependencies = [ ('management', '0087_auto_20161110_2152'), ] operations = [ migrations.AddField( model_name='comment', name='html_content', field=models.TextField(blank=True, default='', editable=False), ), migrations.AlterField( model_name='comment', name='bbtext', field=precise_bbcode.fields.BBCodeTextField(blank=True, default='', no_rendered_field=True, verbose_name='BB Текст'), ), ]