Answers for "on update current_timestamp jpa"

SQL
0

on update current_timestamp jpa

@Temporal(TemporalType.TIMESTAMP)
@Column(name = "edit_timestamp", 
        updatable = false
        columnDefinition="TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
private Date editTimestamp;
Posted by: Guest on May-10-2020

Code answers related to "on update current_timestamp jpa"

Code answers related to "SQL"

Browse Popular Code Answers by Language