Skip to content

Commit

Permalink
fix(LocalDate): Change Jsr310JpaConverters.LocalDateConverter.class f…
Browse files Browse the repository at this point in the history
…or Jsr310JpaConverters.LocalDateTimeConverter.class
  • Loading branch information
dtrouillet committed Jul 31, 2024
1 parent 5fe1eb2 commit fc5d374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/icdc/ebad/domain/Notification.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Notification {
@NotNull
@CreatedDate
@Column(nullable = false, name = "created_date")
@Convert(converter= Jsr310JpaConverters.LocalDateConverter.class)
@Convert(converter= Jsr310JpaConverters.LocalDateTimeConverter.class)
private LocalDateTime createdDate = LocalDateTime.now();

@NotNull
Expand Down

0 comments on commit fc5d374

Please sign in to comment.