Skip to content

Commit

Permalink
chore: 컬럼 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jun3327 committed Dec 30, 2024
1 parent 3eaee88 commit 17a370e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public interface MemberRequestLogRepository extends JpaRepository<MemberRequestL
void batchUpdateIs6hChattingSentToTrueByMemberIds(List<Long> memberIds);

@Modifying
@Query(value = "INSERT INTO member_request_log (member_id, last_request_time, is_6h_chatting_sent, is_72h_chatting_sent) " +
@Query(value = "INSERT INTO member_request_log (member_id, last_request_time, is6h_chatting_sent, is72h_chatting_sent) " +
"VALUES (:memberId, :lastRequestTime, false, false) " +
"ON DUPLICATE KEY UPDATE last_request_time = :lastRequestTime", nativeQuery = true)
void upsertMemberRequestLog(@Param("memberId") Long memberId, @Param("lastRequestTime") LocalDateTime lastRequestTime);
Expand Down

0 comments on commit 17a370e

Please sign in to comment.