# -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2016-05-12 11:10 from __future__ import unicode_literals from django.db import migrations, models import django_pgjson.fields class Migration(migrations.Migration): dependencies = [ ('history', '0008_auto_20150508_1028'), ] operations = [ migrations.AddField( model_name='historyentry', name='comment_versions', field=django_pgjson.fields.JsonField(blank=True, default=None, null=True), ), migrations.AddField( model_name='historyentry', name='edit_comment_date', field=models.DateTimeField(blank=True, default=None, null=True), ), ]