Skip to content

Commit

Permalink
Add DB migrations for index on idzId, active and type
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhoelzl-sap committed Nov 18, 2024
1 parent 7dd9ea0 commit f0b3408
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX IF NOT EXISTS active_and_type_in_zone ON identity_provider ("identity_zone_id", "active", "type");
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX active_and_type_in_zone ON identity_provider ("identity_zone_id", "active", "type") LOCK = SHARED;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS active_and_type_in_zone on identity_provider (identity_zone_id, active, type);

0 comments on commit f0b3408

Please sign in to comment.