Skip to content

Commit

Permalink
[skip ci] fix time data types
Browse files Browse the repository at this point in the history
  • Loading branch information
sergi-Jr committed Aug 16, 2024
1 parent 6e6bb10 commit a81d880
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/sergi/example/user/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import sergi.example.model.BaseEntity;
import sergi.example.task.Task;

import java.time.LocalDate;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;

Expand Down Expand Up @@ -55,8 +55,8 @@ public void removeTask(Task task) {
}

@CreatedDate
private LocalDate createdAt;
private Timestamp createdAt;

@LastModifiedDate
private LocalDate updatedAt;
private Timestamp updatedAt;
}

0 comments on commit a81d880

Please sign in to comment.