Skip to content

Commit a392527

Browse files
committed
Merge pull request #25 from ticosax/missing_migration-dj1.9
Django1.9 detected a missing migration.
2 parents 39a2380 + 479d870 commit a392527

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9 on 2015-12-07 15:21
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('django_fsm_log', '0001_initial'),
12+
]
13+
14+
operations = [
15+
migrations.AlterModelOptions(
16+
name='statelog',
17+
options={'get_latest_by': 'timestamp'},
18+
),
19+
]

0 commit comments

Comments
 (0)