2014-09-26 06:24:17 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
replaces = [
|
|
|
|
("migrations", "3_auto"),
|
|
|
|
("migrations", "4_auto"),
|
|
|
|
("migrations", "5_auto"),
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [("migrations", "2_auto")]
|
|
|
|
|
|
|
|
operations = [
|
2015-01-09 01:00:04 +08:00
|
|
|
migrations.RunPython(migrations.RunPython.noop)
|
2014-09-26 06:24:17 +08:00
|
|
|
]
|