Skip to content

Commit

Permalink
... and the Case of the Missing Migration
Browse files Browse the repository at this point in the history
b2b3de7 introduced a ordering on -published_at. At the time, it
evidently wasn't noticed that this—apparently—merited a
migration. (Indeed, would the migrations framework's predecessor South
have generated one here?—but perhaps we prefer not to dwell on that
time.)
  • Loading branch information
zackmdavis committed Oct 20, 2015
1 parent a8bbef4 commit 2dc14f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions core/migrations/0009_auto_20151020_0455.py
Original file line number Diff line number Diff line change
@@ -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',)},
),
]

0 comments on commit 2dc14f4

Please sign in to comment.