-
Notifications
You must be signed in to change notification settings - Fork 829
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add DB migrations for index on idzId, active and type
- Loading branch information
1 parent
7dd9ea0
commit f0b3408
Showing
3 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...ces/org/cloudfoundry/identity/uaa/db/hsqldb/V4_111__IdP_active_and_type_in_zone_Index.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
1 change: 1 addition & 0 deletions
1
...rces/org/cloudfoundry/identity/uaa/db/mysql/V4_111__IdP_active_and_type_in_zone_Index.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
1 change: 1 addition & 0 deletions
1
...org/cloudfoundry/identity/uaa/db/postgresql/V4_111__IdP_active_and_type_in_zone_Index.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |