Skip to content

Commit

Permalink
Merge pull request #69 from Team-Going/feature/63
Browse files Browse the repository at this point in the history
[chore] Todo 엔티티 마감일 속성 not null 설정
  • Loading branch information
SunwoongH authored Jan 11, 2024
2 parents f567487 + 64b0ba1 commit dc64f37
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 dc64f37

Please sign in to comment.