From 05514ec13aa3ccf2d0859d9cf819ffc06adfc334 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 3 Jun 2026 02:14:50 +0000 Subject: [PATCH] Fix migrations --- .../InvenTree/common/migrations/0045_auto_20260525_0956.py | 2 +- ..._review_needed.py => 0123_remove_stockitem_review_needed.py} | 2 +- ...remove_stockitem_notes.py => 0124_remove_stockitem_notes.py} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/backend/InvenTree/stock/migrations/{0124_remove_stockitem_review_needed.py => 0123_remove_stockitem_review_needed.py} (83%) rename src/backend/InvenTree/stock/migrations/{0123_remove_stockitem_notes.py => 0124_remove_stockitem_notes.py} (85%) 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") ]