Balázs Palcsó commented on an issue
Hibernate ORM / Bug HHH-8591
ImprovedNamingStrategy generates incorrect column name for @CollectionTable
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...