diff --git a/core/migrations/0009_auto_20151020_0455.py b/core/migrations/0009_auto_20151020_0455.py new file mode 100644 index 0000000..ab58a36 --- /dev/null +++ b/core/migrations/0009_auto_20151020_0455.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0008_auto_20150311_0549'), + ] + + operations = [ + migrations.AlterModelOptions( + name='post', + options={'ordering': ('-published_at',)}, + ), + ]