Mercurial > public > sg101
comparison 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 |
comparison
equal
deleted
inserted
replaced
997:19b86e684cc2 | 998:e2c3d7ecfa30 |
---|---|
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', '0003_auto_20151117_2032'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterField( | |
15 model_name='pendingstory', | |
16 name='long_text', | |
17 field=models.TextField(default=b'', blank=True), | |
18 preserve_default=True, | |
19 ), | |
20 migrations.AlterField( | |
21 model_name='story', | |
22 name='long_text', | |
23 field=models.TextField(default=b'', blank=True), | |
24 preserve_default=True, | |
25 ), | |
26 ] |