From a596c51f56e50f42364dea6b0c06a4ee4a9cc34b Mon Sep 17 00:00:00 2001 From: sdikyarts Date: Wed, 8 May 2024 18:53:59 +0700 Subject: [PATCH] Set up Database --- src/main/resources/application-dev.properties | 2 +- src/main/resources/application-test.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index 08ad852..f901512 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -1,6 +1,6 @@ spring.datasource.url=jdbc:postgresql://localhost:5432/subscription-admin spring.datasource.username=postgres -spring.datasource.password=postgres +spring.datasource.password=super spring.jpa.hibernate.ddl-auto=create-drop spring.jpa.show-sql=true spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect diff --git a/src/main/resources/application-test.properties b/src/main/resources/application-test.properties index 0a5230d..a834088 100644 --- a/src/main/resources/application-test.properties +++ b/src/main/resources/application-test.properties @@ -1,6 +1,6 @@ spring.datasource.url=jdbc:postgresql://postgres:5432/subscription-admin spring.datasource.username=postgres -spring.datasource.password=postgres +spring.datasource.password=super spring.jpa.hibernate.ddl-auto=create spring.jpa.show-sql=true spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect