chore: Reorder migrations (#6660)
This commit is contained in:
parent
b89c44f443
commit
b215867cb1
|
@ -44,7 +44,7 @@ def reverse(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("community", "0002_auto_20230320_1222"),
|
||||
("doc", "0013_move_rfc_docaliases"),
|
||||
("doc", "0014_move_rfc_docaliases"),
|
||||
]
|
||||
|
||||
operations = [migrations.RunPython(forward, reverse)]
|
||||
|
|
|
@ -15,7 +15,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0007_alter_docevent_type"),
|
||||
("doc", "0008_alter_docevent_type"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -5,7 +5,7 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0008_add_rfc_states"),
|
||||
("doc", "0009_add_rfc_states"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -70,7 +70,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0009_dochistory_rfc_number_document_rfc_number"),
|
||||
("doc", "0010_dochistory_rfc_number_document_rfc_number"),
|
||||
("name", "0009_rfc_doctype_names"),
|
||||
]
|
||||
|
|
@ -80,7 +80,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0010_create_rfc_documents"),
|
||||
("doc", "0011_create_rfc_documents"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -39,7 +39,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0011_move_rfc_docevents"),
|
||||
("doc", "0012_move_rfc_docevents"),
|
||||
]
|
||||
|
||||
operations = [migrations.RunPython(forward)]
|
|
@ -30,7 +30,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0012_rfc_relateddocuments"),
|
||||
("doc", "0013_rfc_relateddocuments"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -17,7 +17,7 @@ def reverse(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0013_move_rfc_docaliases"),
|
||||
("doc", "0014_move_rfc_docaliases"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -17,7 +17,7 @@ def reverse(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0014_relate_no_aliases"),
|
||||
("doc", "0015_relate_no_aliases"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -6,7 +6,7 @@ from django.db import migrations
|
|||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("ipr", "0002_iprdocrel_no_aliases"),
|
||||
("doc", "0015_relate_hist_no_aliases"),
|
||||
("doc", "0016_relate_hist_no_aliases"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -38,7 +38,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0016_delete_docalias"),
|
||||
("doc", "0017_delete_docalias"),
|
||||
]
|
||||
|
||||
# There is no going back
|
|
@ -15,7 +15,7 @@ def reverse(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0017_move_dochistory"),
|
||||
("doc", "0018_move_dochistory"),
|
||||
]
|
||||
|
||||
operations = [migrations.RunPython(forward, reverse)]
|
|
@ -23,7 +23,7 @@ def forward(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0018_subseries"),
|
||||
("doc", "0019_subseries"),
|
||||
]
|
||||
|
||||
operations = [migrations.RunPython(forward)]
|
|
@ -19,7 +19,7 @@ def reverse(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("ipr", "0001_initial"),
|
||||
("doc", "0015_relate_hist_no_aliases")
|
||||
("doc", "0016_relate_hist_no_aliases")
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
|
@ -5,7 +5,7 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("doc", "0016_delete_docalias"),
|
||||
("doc", "0017_delete_docalias"),
|
||||
("ipr", "0002_iprdocrel_no_aliases"),
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue