Skip to content

Commit

Permalink
fix: 쿼리 에러나는거 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
korECM committed Apr 15, 2023
1 parent ba12b4a commit 568a18a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/kotlin/zip/cafe/repository/LocalAuthRepository.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ interface LocalAuthRepository : JpaRepository<LocalAuth, Long> {
@Query("select a from LocalAuth a where a.localId = :localId and a.isDeleted = false")
fun findByLocalId(localId: String): LocalAuth?

@Query("select exists(select a from LocalAuth a where a.localId = :localId and a.isDeleted = false)")
fun existsByLocalIdIs(localId: String): Boolean

@Query("select a from LocalAuth a where a.member.id = :memberId and a.isDeleted = false")
Expand Down

0 comments on commit 568a18a

Please sign in to comment.