Skip to content

Commit

Permalink
feat: Comment content not null 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeonghee-Han committed Oct 2, 2024
1 parent 9dda369 commit 0242794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/umc/mada/timetable/domain/Comment.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class Comment {
@Column(name = "date", nullable = false)
private LocalDate date;

@Column(name = "content")
@Column(name = "content", nullable = false)
private String content;

@CreationTimestamp
Expand Down

0 comments on commit 0242794

Please sign in to comment.