Skip to content

Commit

Permalink
feat: modify schedule entity name (#47)
Browse files Browse the repository at this point in the history
- startTime, endTime 삭제
  • Loading branch information
chea-young committed Feb 13, 2024
1 parent 7eaa5b4 commit 4d41c81
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ public class Schedule {
@Column(name = "task_name", nullable = false, length = 100)
private String taskName;

@Column(name = "start_time", nullable = false)
@Convert(converter = TimestampConverter.class)
private LocalDateTime startTime;

@Column(name = "end_time", nullable = false)
@Convert(converter = TimestampConverter.class)
private LocalDateTime endTime;

@Column(name = "is_routine", nullable = false)
private Boolean isRoutine;

Expand Down

0 comments on commit 4d41c81

Please sign in to comment.