AI 캐릭터 번역 데이터, 콘텐츠 번역 데이터 엔티티에서 사용하지 않는 필드 제거
This commit is contained in:
@@ -388,8 +388,6 @@ class ChatCharacterController(
|
||||
val entity = AiCharacterTranslation(
|
||||
characterId = character.id!!,
|
||||
locale = locale,
|
||||
translatedName = translatedName,
|
||||
translatedTags = translatedTags,
|
||||
renderedPayload = payload
|
||||
)
|
||||
|
||||
|
||||
@@ -20,8 +20,6 @@ import javax.persistence.UniqueConstraint
|
||||
class AiCharacterTranslation(
|
||||
val characterId: Long,
|
||||
val locale: String,
|
||||
val translatedName: String,
|
||||
val translatedTags: String,
|
||||
|
||||
@Column(columnDefinition = "json")
|
||||
@Convert(converter = AiCharacterTranslationRenderedPayloadConverter::class)
|
||||
|
||||
@@ -795,7 +795,6 @@ class AudioContentService(
|
||||
kr.co.vividnext.sodalive.content.translation.ContentTranslation(
|
||||
contentId = audioContent.id!!,
|
||||
locale = locale,
|
||||
translatedTitle = translatedTitle,
|
||||
renderedPayload = payload
|
||||
)
|
||||
)
|
||||
|
||||
@@ -20,7 +20,6 @@ import javax.persistence.UniqueConstraint
|
||||
class ContentTranslation(
|
||||
val contentId: Long,
|
||||
val locale: String,
|
||||
val translatedTitle: String,
|
||||
|
||||
@Column(columnDefinition = "json")
|
||||
@Convert(converter = ContentTranslationPayloadConverter::class)
|
||||
|
||||
Reference in New Issue
Block a user