diff news/migrations/0003_auto_20151117_2032.py @ 997:19b86e684cc2

WIP on news v2.0. Initial model changes and submit news functions.
author Brian Neal <bgneal@gmail.com>
date Tue, 17 Nov 2015 21:01:20 -0600
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/news/migrations/0003_auto_20151117_2032.py	Tue Nov 17 21:01:20 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', '0002_auto_20151117_2029'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='pendingstory',
+            name='version',
+            field=models.SmallIntegerField(default=2),
+            preserve_default=True,
+        ),
+        migrations.AlterField(
+            model_name='story',
+            name='version',
+            field=models.SmallIntegerField(default=2),
+            preserve_default=True,
+        ),
+    ]