Mercurial > public > sg101
view news/migrations/0004_auto_20151120_2228.py @ 998:e2c3d7ecfa30
Added tests for submit news.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 20 Nov 2015 23:07:37 -0600 |
parents | |
children |
line wrap: on
line source
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('news', '0003_auto_20151117_2032'), ] operations = [ migrations.AlterField( model_name='pendingstory', name='long_text', field=models.TextField(default=b'', blank=True), preserve_default=True, ), migrations.AlterField( model_name='story', name='long_text', field=models.TextField(default=b'', blank=True), preserve_default=True, ), ]