2014-09-26 06:24:17 +08:00
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [("migrations", "5_auto")]
|
|
|
|
|
|
|
|
operations = [
|
2015-01-09 01:00:04 +08:00
|
|
|
migrations.RunPython(migrations.RunPython.noop)
|
2014-09-26 06:24:17 +08:00
|
|
|
]
|