I am trying to map hibernate properties to the database and I do not want to add @Column for entities having camel case
@Entity
public class User extends PanacheEntity{
@Column(name = "user_name")
String userName;
}
I am trying to set the below property but it does not work for quarkus version 2.14.1.Final (not sure about other versions)
quarkus.hibernate-orm.physical-naming-strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy
Am I doing something wrong?