Skip to content

Commit

Permalink
Fix(#171): DB Constraint 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mingeun0507 committed May 25, 2023
1 parent 8eb7f31 commit f106bfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ProjectRecord {
@JoinColumn(name = "project_question_id")
private ProjectQuestion projectQuestion; // 기록 질문

@Column(name = "contents", nullable = false)
@Column(name = "contents", nullable = false, columnDefinition = "TEXT")
private String contents; // 기록 내용

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

0 comments on commit f106bfe

Please sign in to comment.