Fixes #20290: Fix ordering of migrations to support upgrading from v3.7

This commit is contained in:
Jeremy Stretch
2025-09-10 12:33:36 -04:00
parent 0e627d4d9b
commit a99e21afd6

View File

@@ -24,8 +24,9 @@ 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 = [