Skip to content

Commit

Permalink
Sequentiallize auth config removal migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamack authored and TheRealHaoLiu committed Oct 2, 2024
1 parent 0e8fb61 commit 7a665a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 7a665a2

Please sign in to comment.