Skip to content

Commit 83b9d02

Browse files
authored
[DDING-120] 인덱스 내 DB 지정하지 않도록 수정 (#283)
1 parent 71e864d commit 83b9d02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
CREATE INDEX activity_report_term_index
2-
ON ddingdong_dev.activity_report (term)
2+
ON activity_report (term)
33
COMMENT '활동 보고서 회차(term) 인덱스';
44

55
CREATE INDEX activity_report_created_at_index
6-
ON ddingdong_dev.activity_report (created_at)
6+
ON activity_report (created_at)
77
COMMENT '활동보고서 생성 일자(created_at) 인덱스';
88

99
CREATE INDEX activity_report_start_date_index
10-
ON ddingdong_dev.activity_report (start_date)
10+
ON activity_report (start_date)
1111
COMMENT '활동보고서 시작 일자(start_date) 인덱스';

0 commit comments

Comments
 (0)