From 6b0b1da4c0cf5cefc16e7a259744be1982c9976d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=9D=B8=EC=A4=80?= <54973090+dlswns2480@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:53:10 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20contententity=20data=20=ED=95=84?= =?UTF-8?q?=EB=93=9C=20=ED=83=80=EC=9E=85=20=EC=88=98=EC=A0=95(LONGTEXT)?= =?UTF-8?q?=20(#197)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/pokit/out/persistence/content/persist/ContentEntity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapters/out-persistence/src/main/kotlin/com/pokit/out/persistence/content/persist/ContentEntity.kt b/adapters/out-persistence/src/main/kotlin/com/pokit/out/persistence/content/persist/ContentEntity.kt index 30f3f01c..acfa50f8 100644 --- a/adapters/out-persistence/src/main/kotlin/com/pokit/out/persistence/content/persist/ContentEntity.kt +++ b/adapters/out-persistence/src/main/kotlin/com/pokit/out/persistence/content/persist/ContentEntity.kt @@ -20,7 +20,7 @@ class ContentEntity( @Enumerated(EnumType.STRING) val type: ContentType, - @Column(name = "data") + @Column(name = "data", columnDefinition = "LONGTEXT") val data: String, // ex. LINK - url @Column(name = "title", columnDefinition = "LONGTEXT")