Skip to content

Commit

Permalink
fix() : content LONGTEXT로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dongkyun0713 committed Feb 27, 2024
1 parent da2986f commit 5f0b12b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class Question extends BaseEntity {
@Column(name = "question_title", nullable = false)
private String title;

@Column(name = "question_content", nullable = false, columnDefinition = "TEXT")
@Column(name = "question_content", nullable = false, columnDefinition = "LONGTEXT")
private String content;

@Column(name = "send_Experience", nullable = false)
Expand Down

0 comments on commit 5f0b12b

Please sign in to comment.