I need to keep case sensitive my table name in postgresql. Indeed when i annotate @Table(name="SiteType") public class SiteType extends Model
My table name will be "sitetype".
I try to add
@Table(name="SiteType
")
But eovlution default script will generate the following script problem : constraint pk_"SiteType" primary key (id))
Any suggestions?