Skip to content

Commit

Permalink
index creation migrations (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal-egov authored Mar 5, 2024
1 parent 2c75a42 commit ab68988
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
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);
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);
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);
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);

0 comments on commit ab68988

Please sign in to comment.