20 lines
401 B
Python
20 lines
401 B
Python
|
# -*- 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 = [
|
||
|
migrations.RunPython(lambda apps, schema_editor: None)
|
||
|
]
|