annotate countdown/migrations/0002_auto_20160424_1128.py @ 1081:ecb8f07d937b

Added countdown application.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Apr 2016 12:27:26 -0500
parents
children
rev   line source
bgneal@1081 1 # -*- coding: utf-8 -*-
bgneal@1081 2 from __future__ import unicode_literals
bgneal@1081 3
bgneal@1081 4 from django.db import migrations, models
bgneal@1081 5
bgneal@1081 6
bgneal@1081 7 class Migration(migrations.Migration):
bgneal@1081 8
bgneal@1081 9 dependencies = [
bgneal@1081 10 ('countdown', '0001_initial'),
bgneal@1081 11 ]
bgneal@1081 12
bgneal@1081 13 operations = [
bgneal@1081 14 migrations.AlterModelOptions(
bgneal@1081 15 name='event',
bgneal@1081 16 options={'ordering': ['event_date']},
bgneal@1081 17 ),
bgneal@1081 18 ]