annotate news/migrations/0008_auto_20151126_2319.py @ 1096:d9cd3180c12c

More GCalendar V3 conversion in progress. Built a brand new post editor. It is hardcoded into GCalendar right now. We will make it more general in the future.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Jun 2016 21:16:09 -0500
parents 4c0360ae01c6
children
rev   line source
bgneal@1007 1 # -*- coding: utf-8 -*-
bgneal@1007 2 from __future__ import unicode_literals
bgneal@1007 3
bgneal@1007 4 from django.db import models, migrations
bgneal@1007 5
bgneal@1007 6
bgneal@1007 7 class Migration(migrations.Migration):
bgneal@1007 8
bgneal@1007 9 dependencies = [
bgneal@1007 10 ('news', '0007_auto_20151125_2300'),
bgneal@1007 11 ]
bgneal@1007 12
bgneal@1007 13 operations = [
bgneal@1007 14 migrations.AlterField(
bgneal@1007 15 model_name='pendingstory',
bgneal@1007 16 name='short_markup',
bgneal@1007 17 field=models.TextField(default=b'', blank=True),
bgneal@1007 18 preserve_default=True,
bgneal@1007 19 ),
bgneal@1007 20 migrations.AlterField(
bgneal@1007 21 model_name='story',
bgneal@1007 22 name='short_markup',
bgneal@1007 23 field=models.TextField(default=b'', blank=True),
bgneal@1007 24 preserve_default=True,
bgneal@1007 25 ),
bgneal@1007 26 ]