Skip to content

Commit

Permalink
fix: 댓글 좋아요 엔티티 컬럼 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
van1164 committed Jun 4, 2024
1 parent db232af commit 60e8954
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions util/src/main/kotlin/com/van1164/common/domain/Comment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ data class Comment(

val videoId: Long,

var good : Int = 0,
var bad : Int = 0,


@CreatedDate
val createdDate : LocalDateTime = LocalDateTime.now(),

Expand Down

0 comments on commit 60e8954

Please sign in to comment.