-
-
Notifications
You must be signed in to change notification settings - Fork 100
Labels
bugSomething isn't workingSomething isn't workingquarkusThe issue links an issue in QuarkusThe issue links an issue in Quarkus
Description
We need to check if this is actually happening in Hibernate Reactive and add tests for it (if we don't have some already).
After updating an entity both createdAt and updatedAt are returned with the the updatedAt value. However, createdAt is not being persisted to the database. When I list the records from the database the results are returned correctly. I'm using the same DTO object for both operations.
Column(name = "created_at", updatable = false, nullable = false)
@CreationTimestamp
public LocalDateTime createdAt;
@Column(name = "updated_at", nullable = false)
@UpdateTimestamp
public LocalDateTime updatedAt;
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingquarkusThe issue links an issue in QuarkusThe issue links an issue in Quarkus