bgneal@1081: # -*- coding: utf-8 -*- bgneal@1081: from __future__ import unicode_literals bgneal@1081: bgneal@1081: from django.db import migrations, models bgneal@1081: bgneal@1081: bgneal@1081: class Migration(migrations.Migration): bgneal@1081: bgneal@1081: dependencies = [ bgneal@1081: ('countdown', '0001_initial'), bgneal@1081: ] bgneal@1081: bgneal@1081: operations = [ bgneal@1081: migrations.AlterModelOptions( bgneal@1081: name='event', bgneal@1081: options={'ordering': ['event_date']}, bgneal@1081: ), bgneal@1081: ]