Mercurial > public > sg101
comparison 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 |
comparison
equal
deleted
inserted
replaced
998:e2c3d7ecfa30 | 999:8386a8ebcbc7 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 from __future__ import unicode_literals | |
3 | |
4 from django.db import models, migrations | |
5 | |
6 | |
7 class Migration(migrations.Migration): | |
8 | |
9 dependencies = [ | |
10 ('news', '0004_auto_20151120_2228'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterField( | |
15 model_name='pendingstory', | |
16 name='short_text', | |
17 field=models.TextField(default=b'', blank=True), | |
18 preserve_default=True, | |
19 ), | |
20 migrations.AlterField( | |
21 model_name='story', | |
22 name='short_text', | |
23 field=models.TextField(default=b'', blank=True), | |
24 preserve_default=True, | |
25 ), | |
26 ] |