fix: sort milestone by due_date missing migration
This commit is contained in:
parent
7fc719c5d1
commit
7ab6f0fc87
1 changed files with 18 additions and 0 deletions
18
tracker/migrations/0002_auto_20140902_0412.py
Normal file
18
tracker/migrations/0002_auto_20140902_0412.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('tracker', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='milestone',
|
||||||
|
options={'ordering': ['due_date']},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue