| I'm using Hibernate + Spring JPA and Mysql 5.7 as DBMS. I want to use some reserved keyword as column names and for that I eanbled:
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
Some columns have a custom definition like:
@CreatedDate
@Column(updatable = false, columnDefinition = "DATETIME(6)")
private LocalDateTime createdDate;
Unfortunately Hibernate translate this as:
`created_date` `DATETIME(6)`
instead of
`created_date` DATETIME(6)
|