Skip to content

Commit

Permalink
chore: 여행 TODO 엔티티 마감일 속성 not null 제약 조건 추가 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Jan 11, 2024
1 parent f567487 commit 64b0ba1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class Todo extends BaseTimeEntity {
private Long id;
@Column(nullable = false)
private String title;
@Column(nullable = false)
private LocalDate endDate;
private String memo;
@Column(nullable = false)
Expand Down

0 comments on commit 64b0ba1

Please sign in to comment.