Skip to content

Commit 2f364d9

Browse files
author
Pete Wildsmith
committed
Merge pull request #14 from dabapps/missing-migration
Missing migration
2 parents f4283f2 + f64e73a commit 2f364d9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('django_dbq', '0001_initial'),
11+
]
12+
13+
operations = [
14+
migrations.AlterModelOptions(
15+
name='job',
16+
options={'ordering': ['created']},
17+
),
18+
]

0 commit comments

Comments
 (0)