diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/ChatCharacterPersonality.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/ChatCharacterPersonality.kt index d6bd7b3..647c234 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/ChatCharacterPersonality.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/ChatCharacterPersonality.kt @@ -1,6 +1,7 @@ package kr.co.vividnext.sodalive.chat.character import kr.co.vividnext.sodalive.common.BaseEntity +import javax.persistence.Column import javax.persistence.Entity import javax.persistence.FetchType import javax.persistence.JoinColumn @@ -16,6 +17,7 @@ class ChatCharacterPersonality( val trait: String, // 성격 특성 설명 + @Column(columnDefinition = "TEXT", nullable = false) val description: String, @ManyToOne(fetch = FetchType.LAZY)