Просмотр исходного кода

Merge pull request #20314 from netbox-community/20290-fix-migration

Fixes #20290: Fix ordering of migrations to support upgrading from v3.7
bctiemann 5 месяцев назад
Родитель
Сommit
01f1228e3b
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      netbox/users/migrations/0005_alter_user_table.py

+ 2 - 1
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 = [