From c28a711500118d1c436a9ab9a2d2e5d901224679 Mon Sep 17 00:00:00 2001 From: huhdy32 Date: Tue, 21 Oct 2025 15:04:44 +0900 Subject: [PATCH] =?UTF-8?q?hotfix(single-problem):=20=EC=9D=B8=EB=8D=B1?= =?UTF-8?q?=EC=8A=A4=EB=AA=85=20=EC=A4=91=EB=B3=B5=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EC=9D=B8=ED=95=9C=20=EC=83=9D=EC=84=B1=20=EC=8B=A4=ED=8C=A8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../read/entity/SingleProblemReadModel.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/domain/mathrank-problem-single-read-domain/src/main/java/kr/co/mathrank/domain/problem/single/read/entity/SingleProblemReadModel.java b/domain/mathrank-problem-single-read-domain/src/main/java/kr/co/mathrank/domain/problem/single/read/entity/SingleProblemReadModel.java index f4be24fb..8a94cce1 100644 --- a/domain/mathrank-problem-single-read-domain/src/main/java/kr/co/mathrank/domain/problem/single/read/entity/SingleProblemReadModel.java +++ b/domain/mathrank-problem-single-read-domain/src/main/java/kr/co/mathrank/domain/problem/single/read/entity/SingleProblemReadModel.java @@ -34,16 +34,16 @@ @Entity @Getter @Table(indexes = { - @Index(name = "idx_coursePath", columnList = "course_path"), - @Index(name = "idx_problemId", columnList = "problem_id"), - @Index(name = "idx_answerType", columnList = "answer_type"), - @Index(name = "idx_location", columnList = "location"), - @Index(name = "idx_difficulty", columnList = "difficulty"), - @Index(name = "idx_totalAttemptedCount", columnList = "total_attempted_count"), - @Index(name = "idx_firstTrySuccessCount", columnList = "first_try_success_count desc"), - @Index(name = "idx_attemptedUserDistinctCount", columnList = "attempted_user_distinct_count desc"), - @Index(name = "idx_accuracy", columnList = "accuracy desc"), - @Index(name = "idx_pastProblem", columnList = "past_problem"), + @Index(name = "idx_singleProblem_coursePath", columnList = "course_path"), + @Index(name = "idx_singleProblem_problemId", columnList = "problem_id"), + @Index(name = "idx_singleProblem_answerType", columnList = "answer_type"), + @Index(name = "idx_singleProblem_location", columnList = "location"), + @Index(name = "idx_singleProblem_difficulty", columnList = "difficulty"), + @Index(name = "idx_singleProblem_totalAttemptedCount", columnList = "total_attempted_count"), + @Index(name = "idx_singleProblem_firstTrySuccessCount", columnList = "first_try_success_count desc"), + @Index(name = "idx_singleProblem_attemptedUserDistinctCount", columnList = "attempted_user_distinct_count desc"), + @Index(name = "idx_singleProblem_accuracy", columnList = "accuracy desc"), + @Index(name = "idx_singleProblem_pastProblem", columnList = "past_problem"), }) @NoArgsConstructor(access = AccessLevel.PROTECTED) @Setter