From 02dc401224eb36f04a252508f7944118f998a633 Mon Sep 17 00:00:00 2001 From: Kruti Shah Date: Tue, 13 Jan 2026 00:47:03 +0530 Subject: [PATCH] Hibernate ddl set to none to fix the breaking test build issue --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index a0264d2..a150ff9 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -24,7 +24,7 @@ spring.datasource.password=${POSTGRES_PASSWORD} spring.datasource.driver-class-name=org.postgresql.Driver spring.sql.init.mode=never -spring.jpa.hibernate.ddl-auto=update +spring.jpa.hibernate.ddl-auto=none spring.jpa.show-sql=true spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect