diff --git a/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py b/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py index 9fa31cdbe1..a4f47d718a 100644 --- a/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py +++ b/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py @@ -97,7 +97,7 @@ class Migration(migrations.Migration): ("company", "0079_auto_20260212_1054"), ("order", "0119_transferorderlineitem_line_int"), ("part", "0150_part_maximum_stock"), - ("stock", "0123_remove_stockitem_notes") + ("stock", "0123_remove_stockitem_review_needed") ] operations = [ diff --git a/src/backend/InvenTree/stock/migrations/0124_remove_stockitem_review_needed.py b/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_review_needed.py similarity index 83% rename from src/backend/InvenTree/stock/migrations/0124_remove_stockitem_review_needed.py rename to src/backend/InvenTree/stock/migrations/0123_remove_stockitem_review_needed.py index de8126462c..e81db219dd 100644 --- a/src/backend/InvenTree/stock/migrations/0124_remove_stockitem_review_needed.py +++ b/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_review_needed.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ("stock", "0123_remove_stockitem_notes"), + ("stock", "0122_alter_stockitem_creation_date"), ] operations = [ diff --git a/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py b/src/backend/InvenTree/stock/migrations/0124_remove_stockitem_notes.py similarity index 85% rename from src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py rename to src/backend/InvenTree/stock/migrations/0124_remove_stockitem_notes.py index 79fc1a4171..cdabdc3d00 100644 --- a/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py +++ b/src/backend/InvenTree/stock/migrations/0124_remove_stockitem_notes.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ("stock", "0122_alter_stockitem_creation_date"), + ("stock", "0123_remove_stockitem_review_needed"), ("common", "0046_remove_notesimage_model_id_and_more") ]