I have a table in Postgresql:
CREATE TABLE "UTILISATEUR"(
"IdUtilisateur" serial NOT NULL,
"Nom" character varying(50),
&qu
You can configure your application with the next line depend the database:
MySql
spring.jpa.hibernate.naming_strategy = org.hibernate.cfg.DefaultNamingStrategy
Postgres
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
Oracle
spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect