Skip to content

Commit

Permalink
Merge pull request #107 from dongkyun0713/dongkyun
Browse files Browse the repository at this point in the history
fix() : content LONGTEXT로 변경
  • Loading branch information
dongkyun0713 authored Feb 27, 2024
2 parents 772a855 + 5f0b12b commit 0e1e4b3
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 0e1e4b3

Please sign in to comment.