Skip to content

Commit

Permalink
feat : contententity data 필드 타입 수정(LONGTEXT) (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlswns2480 authored Dec 3, 2024
1 parent 2253aeb commit 6b0b1da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 6b0b1da

Please sign in to comment.