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()