Add migrations for proxy models.

This commit is contained in:
Roberto Rosario
2015-09-19 22:02:51 -04:00
parent 366eca8ed7
commit 1feea67f41
5 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('document_comments', '0003_auto_20150729_2144'),
]
operations = [
migrations.AlterField(
model_name='comment',
name='comment',
field=models.TextField(verbose_name='Comment'),
preserve_default=True,
),
]