From 7959b6e597922432a512909023776c623dcac366 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 12:59:26 +0100 Subject: [PATCH] Update 0111_auto_20230521_1350.py (#9659) (#9660) Make data migration non atomic (cherry picked from commit aec1de6eb3ca3250671b0159b7a88dca102579b1) Co-authored-by: Oliver --- .../InvenTree/part/migrations/0111_auto_20230521_1350.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/InvenTree/part/migrations/0111_auto_20230521_1350.py b/src/backend/InvenTree/part/migrations/0111_auto_20230521_1350.py index 26cc04a796..4ac64c9011 100644 --- a/src/backend/InvenTree/part/migrations/0111_auto_20230521_1350.py +++ b/src/backend/InvenTree/part/migrations/0111_auto_20230521_1350.py @@ -84,6 +84,8 @@ def migrate_part_units(apps, schema_editor): class Migration(migrations.Migration): + atomic = False + dependencies = [ ('part', '0110_alter_part_units'), ]