Skip to content

Commit

Permalink
feat: 코드깨짐 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
injoon2019 committed Oct 3, 2024
1 parent dee3299 commit bc9b56a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface BottleRepository : JpaRepository<Bottle, Long> {

@Query(
value = "SELECT b FROM Bottle b " +
"WHERE b.targetUser = :targetUser AND b.expiredAt > :currentDateTime AND b.bottleStatus IN :bottleStatus AND b.pingPongStatus IN :pingpPongStatus " +
"WHERE b.targetUser = :targetUser AND b.expiredAt > :currentDateTime AND b.bottleStatus IN :bottleStatus AND b.pingPongStatus IN :pingPongStatus " +
"AND b.deleted = false AND b.targetUser.deleted = false AND b.sourceUser.deleted = false " +
"ORDER BY b.createdAt desc "
)
Expand Down

0 comments on commit bc9b56a

Please sign in to comment.