diff --git a/authentik/providers/oauth2/migrations/0022_remove_accesstoken_session_id_and_more.py b/authentik/providers/oauth2/migrations/0022_remove_accesstoken_session_id_and_more.py index 081f45962c..82c5e3ed3a 100644 --- a/authentik/providers/oauth2/migrations/0022_remove_accesstoken_session_id_and_more.py +++ b/authentik/providers/oauth2/migrations/0022_remove_accesstoken_session_id_and_more.py @@ -37,7 +37,7 @@ def migrate_session(apps: Apps, schema_editor: BaseDatabaseSchemaEditor): class Migration(migrations.Migration): dependencies = [ - ("authentik_core", "0040_provider_invalidation_flow"), + ("authentik_core", "0039_source_group_matching_mode_alter_group_name_and_more"), ("authentik_providers_oauth2", "0021_oauth2provider_encryption_key_and_more"), ] diff --git a/authentik/providers/oauth2/migrations/0023_alter_accesstoken_refreshtoken_use_hash_index.py b/authentik/providers/oauth2/migrations/0023_alter_accesstoken_refreshtoken_use_hash_index.py index e17440bc3c..9e232a90bf 100644 --- a/authentik/providers/oauth2/migrations/0023_alter_accesstoken_refreshtoken_use_hash_index.py +++ b/authentik/providers/oauth2/migrations/0023_alter_accesstoken_refreshtoken_use_hash_index.py @@ -8,7 +8,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ("authentik_core", "0040_provider_invalidation_flow"), + ("authentik_core", "0039_source_group_matching_mode_alter_group_name_and_more"), ("authentik_providers_oauth2", "0022_remove_accesstoken_session_id_and_more"), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ]