-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GETP-325 feat: 프로젝트 지원 테이블 인덱스 설계를 통해 프로젝트 목록 조회 API 성능 약 2.35배 개선 (#182
- Loading branch information
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
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
5 changes: 5 additions & 0 deletions
5
get-p-persistence/src/main/resources/db/migration/V9__create_index_project_application.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,5 @@ | ||
create index ix_project_application_project_id_status | ||
on project_application(project_id, status); | ||
|
||
create index ix_team_project_application_teammate_project_application_id | ||
on team_project_application_teammate(project_application_id); |