Skip to content

Commit

Permalink
Add MySQL DB migrations for removing old alias_zid indexes and adding…
Browse files Browse the repository at this point in the history
… new one on aliasZid and identity_zone_id
  • Loading branch information
adrianhoelzl-sap committed Jun 25, 2024
1 parent fe4a35c commit 086f1cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX identity_provider_alias_zid__idx ON identity_provider LOCK = SHARED;
DROP INDEX users_alias_zid__idx ON users LOCK = SHARED;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX identity_provider_alias_zid_idz_id__idx on identity_provider (alias_zid, identity_zone_id) LOCK = SHARED;
CREATE INDEX users_alias_zid_idz_id__idx on users (alias_zid, identity_zone_id) LOCK = SHARED;

0 comments on commit 086f1cb

Please sign in to comment.