mirror of
https://github.com/Hopiu/django.git
synced 2026-03-18 15:00:25 +00:00
14 lines
315 B
Python
14 lines
315 B
Python
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(migrations.RunPython.noop)]
|