Skip to content

Commit df0a444

Browse files
Add DB migrations for index on idzId, active and type
1 parent 7dd9ea0 commit df0a444

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATE INDEX IF NOT EXISTS active_and_type_in_zone ON identity_provider (identity_zone_id, active, type);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATE INDEX active_and_type_in_zone ON identity_provider (identity_zone_id, active, type) LOCK = SHARED;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATE INDEX CONCURRENTLY IF NOT EXISTS active_and_type_in_zone on identity_provider (identity_zone_id, active, type);

0 commit comments

Comments
 (0)