Skip to content

Commit

Permalink
Add indexes on identity_provider.alias_zid and users.alias_zid
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhoelzl-sap committed Jun 4, 2024
1 parent 7f52786 commit 780d9ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX identity_provider_alias_zid__idx ON identity_provider (alias_zid);
CREATE INDEX users_alias_zid__idx ON users (alias_zid);
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX identity_provider_alias_zid__idx ON identity_provider (alias_zid);
CREATE INDEX users_alias_zid__idx ON users (alias_zid);
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS identity_provider_alias_zid__idx on identity_provider (alias_zid);
CREATE INDEX CONCURRENTLY IF NOT EXISTS users_alias_zid__idx on users (alias_zid);

0 comments on commit 780d9ff

Please sign in to comment.