Mercurial > public > sg101
diff news/migrations/0005_auto_20151121_1445.py @ 999:8386a8ebcbc7
WIP News v2.0 admin changes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 21 Nov 2015 14:53:29 -0600 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/news/migrations/0005_auto_20151121_1445.py Sat Nov 21 14:53:29 2015 -0600 @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('news', '0004_auto_20151120_2228'), + ] + + operations = [ + migrations.AlterField( + model_name='pendingstory', + name='short_text', + field=models.TextField(default=b'', blank=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='story', + name='short_text', + field=models.TextField(default=b'', blank=True), + preserve_default=True, + ), + ]