Mercurial > public > sg101
comparison 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 |
comparison
equal
deleted
inserted
replaced
1080:db8f5b3204b7 | 1081:ecb8f07d937b |
---|---|
1 # -*- coding: utf-8 -*- | |
2 from __future__ import unicode_literals | |
3 | |
4 from django.db import migrations, models | |
5 | |
6 | |
7 class Migration(migrations.Migration): | |
8 | |
9 dependencies = [ | |
10 ('countdown', '0001_initial'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterModelOptions( | |
15 name='event', | |
16 options={'ordering': ['event_date']}, | |
17 ), | |
18 ] |