changeset 1007:4c0360ae01c6

News migrations for previous commit.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Nov 2015 23:20:12 -0600
parents 842c1343061c
children bfc4a0ffe5a7
files news/migrations/0008_auto_20151126_2319.py
diffstat 1 files changed, 26 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/news/migrations/0008_auto_20151126_2319.py	Thu Nov 26 23:20:12 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', '0007_auto_20151125_2300'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='pendingstory',
+            name='short_markup',
+            field=models.TextField(default=b'', blank=True),
+            preserve_default=True,
+        ),
+        migrations.AlterField(
+            model_name='story',
+            name='short_markup',
+            field=models.TextField(default=b'', blank=True),
+            preserve_default=True,
+        ),
+    ]