-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c75a42
commit ab68988
Showing
4 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...hold/src/main/resources/db/migration/main/V20240305114132__household_search_index_ddl.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 idx_household_tenantId_isDeleted_addressId ON household(tenantId, isDeleted, addressId); |
1 change: 1 addition & 0 deletions
1
...c/main/resources/db/migration/main/V20240305114225__household_member_search_index_ddl.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 idx_household_member_id ON household_member(id); |
1 change: 1 addition & 0 deletions
1
...ain/resources/db/migration/main/V20240305113500__project_beneficiary_search_index_ddl.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 idx_project_beneficiary_beneficiaryClientReferenceId ON project_beneficiary(beneficiaryClientReferenceId); |
1 change: 1 addition & 0 deletions
1
.../src/main/resources/db/migration/main/V20240305114021__task_resource_search_index_ddl.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 idx_task_resource_taskid ON task_resource(taskid); |