diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index 2a25a46dab35b81232f2780d23239c9f66e7ede0..3417ba43eeff77bda581e01210a884342153bad9 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -40,5 +40,3 @@ spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.CockroachDialect # DB Login data spring.datasource.url=jdbc:postgresql://${host}:26257/${DB_USER}?sslmode=${ssl_mode}&sslrootcert=${ca_crt}&sslcert=${ssl_cert}&sslkey=${ssl_key} spring.datasource.username=${DB_USER:} -spring.datasource.password=${DB_PW:} - diff --git a/src/main/resources/application-local.properties b/src/main/resources/application-local.properties index 8f86df2e9d31921be8c0253cd818b1c4f13f647e..541c9ea26e9fd28b1ab0924d55d9ab90e2660187 100644 --- a/src/main/resources/application-local.properties +++ b/src/main/resources/application-local.properties @@ -41,4 +41,3 @@ spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.CockroachDialect spring.datasource.url=${DB_URL:} spring.datasource.username=${DB_USER:} spring.datasource.password=${DB_PW:} - diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index eaad576abff6408647954753af877458ac9aeec8..5306ad17c1590310ca391d8788525700f2bfcebc 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -30,15 +30,13 @@ spring.main.web-application-type=REACTIVE spring.jpa.generate-ddl=true spring.jpa.show-sql=false # This setting should only be used in dev. In prod we want to switch to update -spring.jpa.hibernate.ddl-auto=update +spring.jpa.hibernate.ddl-auto=create spring.jpa.properties.hibernate.format_sql=true spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true -spring.jpa.properties.hibernate.bytecode.use_reflection_optimizer=false +spring.jpa.properties.hibernate.bytecode.use_reflectiweon_optimizer=false spring.jpa.open-in-view=false spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.CockroachDialect # DB Login data spring.datasource.url=jdbc:postgresql://${host}:26257/${DB_USER}?sslmode=${ssl_mode}&sslrootcert=${ca_crt}&sslcert=${ssl_cert}&sslkey=${ssl_key} spring.datasource.username=${DB_USER:} -spring.datasource.password=${DB_PW:} -