From 7a665a2be0055151379c99976fbb1fc2967eaa86 Mon Sep 17 00:00:00 2001 From: jessicamack Date: Wed, 2 Oct 2024 14:21:27 -0400 Subject: [PATCH] Sequentiallize auth config removal migrations --- ...1_remove_oidc_auth_conf.py => 0012_remove_oidc_auth_conf.py} | 2 +- ...move_radius_auth_conf.py => 0013_remove_radius_auth_conf.py} | 2 +- ...1_remove_saml_auth_conf.py => 0014_remove_saml_auth_conf.py} | 2 +- ...ve_social_oauth_conf.py => 0015_remove_social_oauth_conf.py} | 2 +- ...s_plus_auth_conf.py => 0016_remove_tacacs_plus_auth_conf.py} | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename awx/conf/migrations/{0011_remove_oidc_auth_conf.py => 0012_remove_oidc_auth_conf.py} (91%) rename awx/conf/migrations/{0011_remove_radius_auth_conf.py => 0013_remove_radius_auth_conf.py} (90%) rename awx/conf/migrations/{0011_remove_saml_auth_conf.py => 0014_remove_saml_auth_conf.py} (95%) rename awx/conf/migrations/{0011_remove_social_oauth_conf.py => 0015_remove_social_oauth_conf.py} (98%) rename awx/conf/migrations/{0011_remove_tacacs_plus_auth_conf.py => 0016_remove_tacacs_plus_auth_conf.py} (91%) diff --git a/awx/conf/migrations/0011_remove_oidc_auth_conf.py b/awx/conf/migrations/0012_remove_oidc_auth_conf.py similarity index 91% rename from awx/conf/migrations/0011_remove_oidc_auth_conf.py rename to awx/conf/migrations/0012_remove_oidc_auth_conf.py index f3393f3f44ef..be80ef7a989b 100644 --- a/awx/conf/migrations/0011_remove_oidc_auth_conf.py +++ b/awx/conf/migrations/0012_remove_oidc_auth_conf.py @@ -12,7 +12,7 @@ def remove_oidc_auth_conf(apps, scheme_editor): class Migration(migrations.Migration): dependencies = [ - ('conf', '0010_change_to_JSONField'), + ('conf', '0011_remove_ldap_auth_conf'), ] operations = [ diff --git a/awx/conf/migrations/0011_remove_radius_auth_conf.py b/awx/conf/migrations/0013_remove_radius_auth_conf.py similarity index 90% rename from awx/conf/migrations/0011_remove_radius_auth_conf.py rename to awx/conf/migrations/0013_remove_radius_auth_conf.py index 6c0c619e5e3e..90e1cf3cce41 100644 --- a/awx/conf/migrations/0011_remove_radius_auth_conf.py +++ b/awx/conf/migrations/0013_remove_radius_auth_conf.py @@ -15,7 +15,7 @@ def remove_radius_auth_conf(apps, scheme_editor): class Migration(migrations.Migration): dependencies = [ - ('conf', '0010_change_to_JSONField'), + ('conf', '0012_remove_oidc_auth_conf'), ] operations = [ diff --git a/awx/conf/migrations/0011_remove_saml_auth_conf.py b/awx/conf/migrations/0014_remove_saml_auth_conf.py similarity index 95% rename from awx/conf/migrations/0011_remove_saml_auth_conf.py rename to awx/conf/migrations/0014_remove_saml_auth_conf.py index 83c4fd3c469b..a7f1cd626a2c 100644 --- a/awx/conf/migrations/0011_remove_saml_auth_conf.py +++ b/awx/conf/migrations/0014_remove_saml_auth_conf.py @@ -32,7 +32,7 @@ def remove_saml_auth_conf(apps, scheme_editor): class Migration(migrations.Migration): dependencies = [ - ('conf', '0010_change_to_JSONField'), + ('conf', '0013_remove_radius_auth_conf'), ] operations = [ diff --git a/awx/conf/migrations/0011_remove_social_oauth_conf.py b/awx/conf/migrations/0015_remove_social_oauth_conf.py similarity index 98% rename from awx/conf/migrations/0011_remove_social_oauth_conf.py rename to awx/conf/migrations/0015_remove_social_oauth_conf.py index b72db9398b61..7fa027b93ccb 100644 --- a/awx/conf/migrations/0011_remove_social_oauth_conf.py +++ b/awx/conf/migrations/0015_remove_social_oauth_conf.py @@ -74,7 +74,7 @@ def remove_social_oauth_conf(apps, scheme_editor): class Migration(migrations.Migration): dependencies = [ - ('conf', '0010_change_to_JSONField'), + ('conf', '0014_remove_saml_auth_conf'), ] operations = [ diff --git a/awx/conf/migrations/0011_remove_tacacs_plus_auth_conf.py b/awx/conf/migrations/0016_remove_tacacs_plus_auth_conf.py similarity index 91% rename from awx/conf/migrations/0011_remove_tacacs_plus_auth_conf.py rename to awx/conf/migrations/0016_remove_tacacs_plus_auth_conf.py index 229c40bcc138..76678578ffad 100644 --- a/awx/conf/migrations/0011_remove_tacacs_plus_auth_conf.py +++ b/awx/conf/migrations/0016_remove_tacacs_plus_auth_conf.py @@ -18,7 +18,7 @@ def remove_tacacs_plus_auth_conf(apps, scheme_editor): class Migration(migrations.Migration): dependencies = [ - ('conf', '0010_change_to_JSONField'), + ('conf', '0015_remove_social_oauth_conf'), ] operations = [