From 48cd60b8d8c4cd82c5433543cf6e5c2665865f3e Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 26 May 2026 23:36:51 +0000 Subject: [PATCH] Adjust migration text --- .../InvenTree/common/migrations/0045_auto_20260525_0956.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 412f0d7ea8..edd1dd62ba 100644 --- a/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py +++ b/src/backend/InvenTree/common/migrations/0045_auto_20260525_0956.py @@ -37,7 +37,7 @@ def migrate_notes(apps, schema_editor): if not with_notes.exists(): continue - progress = tqdm(total=with_notes.count(), desc=f'Migrating notes for {app}.{model}') + progress = tqdm(total=with_notes.count(), desc=f'Migration common.0045: Migrating notes for {app}.{model}') initial_note_count = Note.objects.count() expected_note_count = initial_note_count + with_notes.count()