I was trying switch to ImprovedNamingStrategy. And I noticed that the column name in the create table for a @CollectionTable annotation is incorrect. Config: * hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect * hibernate.hbm2ddl.auto=create-drop Code example: {code} public enum Role { BASIC, ADMIN; } @Entity(name = "User_Table...
|