Skip to content

Commit

Permalink
refactor: 피드 내용 nullable false 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
kevstevie committed Nov 2, 2023
1 parent 99c1083 commit 9a22c6b
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 FeedPost extends BaseEntity {
@JoinColumn(name = "study_id")
private Study study;

@Column(length = 1000)
@Column(length = 1000, nullable = false)
private String content;

private String imageUrl;
Expand Down

0 comments on commit 9a22c6b

Please sign in to comment.