From 5823d2b6a0d5832d091eea967ab7714e75b3f6d6 Mon Sep 17 00:00:00 2001 From: hitanshu310 Date: Mon, 16 Feb 2026 01:11:20 +0530 Subject: [PATCH] Revert "Update JPA config to use update mode and disable SQL init" This reverts commit 3fcea268a985d6b24fd114f21e63da96ef51c3d6. --- src/main/resources/application-local.properties | 1 - src/main/resources/application-prod.properties | 3 +-- src/main/resources/application-test.properties | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/resources/application-local.properties b/src/main/resources/application-local.properties index 0bdba38..60ec5d5 100644 --- a/src/main/resources/application-local.properties +++ b/src/main/resources/application-local.properties @@ -9,5 +9,4 @@ debug=true spring.jpa.hibernate.ddl-auto=update spring.jpa.show-sql=true -spring.sql.init.mode=never spring.datasource.url=jdbc:postgresql://localhost:5432/cftunnel diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index 09de097..cb15c36 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -9,5 +9,4 @@ spring.datasource.driver-class-name=org.postgresql.Driver # JPA Configuration spring.jpa.hibernate.ddl-auto=update spring.jpa.show-sql=false -spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect -spring.sql.init.mode=never \ No newline at end of file +spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect \ No newline at end of file diff --git a/src/main/resources/application-test.properties b/src/main/resources/application-test.properties index 4d768ec..b257503 100644 --- a/src/main/resources/application-test.properties +++ b/src/main/resources/application-test.properties @@ -10,4 +10,3 @@ spring.datasource.driver-class-name=org.postgresql.Driver spring.jpa.hibernate.ddl-auto=update spring.jpa.show-sql=true spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect -spring.sql.init.mode=never