Skip to content

Commit

Permalink
edit : title 필드 longtext 적용 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlswns2480 authored Sep 5, 2024
1 parent cd16140 commit 13efe67
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.pokit.out.persistence.user.persist

import com.pokit.out.persistence.BaseEntity
import com.pokit.token.model.AuthPlatform
import com.pokit.user.model.Role
import com.pokit.user.model.User
Expand Down Expand Up @@ -32,7 +33,7 @@ class UserEntity(

@Column(name = "is_registered")
var registered: Boolean
) {
) : BaseEntity() {
fun delete() {
this.deleted = true
}
Expand Down

0 comments on commit 13efe67

Please sign in to comment.