Mercurial > public > sg101
comparison news/migrations/0008_auto_20151126_2319.py @ 1007:4c0360ae01c6
News migrations for previous commit.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Nov 2015 23:20:12 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1006:842c1343061c | 1007:4c0360ae01c6 |
---|---|
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', '0007_auto_20151125_2300'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterField( | |
15 model_name='pendingstory', | |
16 name='short_markup', | |
17 field=models.TextField(default=b'', blank=True), | |
18 preserve_default=True, | |
19 ), | |
20 migrations.AlterField( | |
21 model_name='story', | |
22 name='short_markup', | |
23 field=models.TextField(default=b'', blank=True), | |
24 preserve_default=True, | |
25 ), | |
26 ] |