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