fix(chat-character): DB에서 speechStyle type을 varchar에서 text로의 변경에 따라 @Column(columnDefinition = "TEXT") 추가
This commit is contained in:
parent
550e4ac9ce
commit
034472defa
|
@ -37,6 +37,7 @@ class ChatCharacter(
|
||||||
var speechPattern: String? = null,
|
var speechPattern: String? = null,
|
||||||
|
|
||||||
// 대화 스타일
|
// 대화 스타일
|
||||||
|
@Column(columnDefinition = "TEXT")
|
||||||
var speechStyle: String? = null,
|
var speechStyle: String? = null,
|
||||||
|
|
||||||
// 외모 설명
|
// 외모 설명
|
||||||
|
|
Loading…
Reference in New Issue