From a99e21afd665ebba88a67b41ad8047dcc1c04b7f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 10 Sep 2025 12:33:36 -0400 Subject: [PATCH] Fixes #20290: Fix ordering of migrations to support upgrading from v3.7 --- netbox/users/migrations/0005_alter_user_table.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/users/migrations/0005_alter_user_table.py b/netbox/users/migrations/0005_alter_user_table.py index 173a7ab4d..d87a8abe9 100644 --- a/netbox/users/migrations/0005_alter_user_table.py +++ b/netbox/users/migrations/0005_alter_user_table.py @@ -24,8 +24,9 @@ def update_content_types(apps, schema_editor): class Migration(migrations.Migration): dependencies = [ + ('core', '0018_concrete_objecttype'), + ('extras', '0117_move_objectchange'), ('users', '0002_squashed_0004'), - ('extras', '0113_customfield_rename_object_type'), ] operations = [