From b372c143a3933dcfbb2812a65a3ea7bbb1e3385d Mon Sep 17 00:00:00 2001 From: Leonardo Colman Lopes Date: Tue, 2 Jan 2024 20:29:34 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Add=20spring.jpa.hibern?= =?UTF-8?q?ate.ddl-auto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 2 +- src/main/resources/application.properties | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index ff490cb..bfbf46b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import org.springframework.boot.gradle.tasks.bundling.BootJar -version = "2.3.0" +version = "2.3.1" group = "app.jopiter" plugins { diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 25b2382..1e07824 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -25,4 +25,5 @@ management.endpoints.web.base-path=/ spring.datasource.driver-class-name=org.postgresql.Driver spring.datasource.url=jdbc:postgresql://localhost:5432/jopiter spring.datasource.username=jopiter -spring.datasource.password=password \ No newline at end of file +spring.datasource.password=password +spring.jpa.hibernate.ddl-auto=update \ No newline at end of file