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 ba9fa9395a..412f0d7ea8 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", "0119_alter_stockitemtestresult_date") + ("stock", "0122_alter_stockitem_creation_date") ] operations = [ diff --git a/src/backend/InvenTree/stock/migrations/0120_remove_stockitem_notes.py b/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py similarity index 85% rename from src/backend/InvenTree/stock/migrations/0120_remove_stockitem_notes.py rename to src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py index 1145ce9de6..79fc1a4171 100644 --- a/src/backend/InvenTree/stock/migrations/0120_remove_stockitem_notes.py +++ b/src/backend/InvenTree/stock/migrations/0123_remove_stockitem_notes.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ("stock", "0119_alter_stockitemtestresult_date"), + ("stock", "0122_alter_stockitem_creation_date"), ("common", "0046_remove_notesimage_model_id_and_more") ]