Răsfoiți Sursa

Fixes #20329: Fix InconsistentMigrationHistory exception when upgrading from v4.3 (#20330)

Reverts "Fixes #20290: Fix ordering of migrations to support upgrading from v3.7"
Jeremy Stretch 5 luni în urmă
părinte
comite
77376524f9
1 a modificat fișierele cu 1 adăugiri și 2 ștergeri
  1. 1 2
      netbox/users/migrations/0005_alter_user_table.py

+ 1 - 2
netbox/users/migrations/0005_alter_user_table.py

@@ -24,9 +24,8 @@ def update_content_types(apps, schema_editor):
 
 
 class Migration(migrations.Migration):
 class Migration(migrations.Migration):
     dependencies = [
     dependencies = [
-        ('core', '0018_concrete_objecttype'),
-        ('extras', '0117_move_objectchange'),
         ('users', '0002_squashed_0004'),
         ('users', '0002_squashed_0004'),
+        ('extras', '0113_customfield_rename_object_type'),
     ]
     ]
 
 
     operations = [
     operations = [