fix(캐릭터 성격특성): description SQL 컬럼 타입 TEXT로 변경

This commit is contained in:
Klaus 2025-08-07 16:01:53 +09:00
parent ef8458c7a3
commit add21c45c5
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package kr.co.vividnext.sodalive.chat.character package kr.co.vividnext.sodalive.chat.character
import kr.co.vividnext.sodalive.common.BaseEntity import kr.co.vividnext.sodalive.common.BaseEntity
import javax.persistence.Column
import javax.persistence.Entity import javax.persistence.Entity
import javax.persistence.FetchType import javax.persistence.FetchType
import javax.persistence.JoinColumn import javax.persistence.JoinColumn
@ -16,6 +17,7 @@ class ChatCharacterPersonality(
val trait: String, val trait: String,
// 성격 특성 설명 // 성격 특성 설명
@Column(columnDefinition = "TEXT", nullable = false)
val description: String, val description: String,
@ManyToOne(fetch = FetchType.LAZY) @ManyToOne(fetch = FetchType.LAZY)