Skip to content

Commit

Permalink
fix : user isDeleted 필터링 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
swdevsw98 committed Feb 27, 2024
1 parent 607445e commit 2a9d4d6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ import jakarta.persistence.FetchType
import jakarta.persistence.JoinColumn
import jakarta.persistence.ManyToOne
import jakarta.persistence.Table
import org.hibernate.annotations.Where

@Entity
@Table(name = "users")
@Where(clause = "is_deleted = 0")
class User(
val studentId: String,

Expand Down

0 comments on commit 2a9d4d6

Please sign in to comment.