Skip to content

Commit 7737652

Browse files
Fixes #20329: Fix InconsistentMigrationHistory exception when upgrading from v4.3 (#20330)
Reverts "Fixes #20290: Fix ordering of migrations to support upgrading from v3.7"
1 parent 53d1b1a commit 7737652

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

netbox/users/migrations/0005_alter_user_table.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ def update_content_types(apps, schema_editor):
2424

2525
class Migration(migrations.Migration):
2626
dependencies = [
27-
('core', '0018_concrete_objecttype'),
28-
('extras', '0117_move_objectchange'),
2927
('users', '0002_squashed_0004'),
28+
('extras', '0113_customfield_rename_object_type'),
3029
]
3130

3231
operations = [

0 commit comments

Comments
 (0)