Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/countdown/migrations/0002_auto_20160424_1128.py Sun Apr 24 12:27:26 2016 -0500 @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('countdown', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='event', + options={'ordering': ['event_date']}, + ), + ]