From b62af42b4d58c81b7042d43dece440498070889a Mon Sep 17 00:00:00 2001 From: doraerdelyi <163741439+doraerdelyi@users.noreply.github.com> Date: Thu, 8 May 2025 14:23:33 +0200 Subject: [PATCH] set spring.jpa.hibernate.ddl-auto to update --- backend/src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties index d4c42d0..7407d89 100644 --- a/backend/src/main/resources/application.properties +++ b/backend/src/main/resources/application.properties @@ -1,6 +1,6 @@ spring.application.name=solar-watch openweather.api.key=${API_KEY} -spring.jpa.hibernate.ddl-auto=create-drop +spring.jpa.hibernate.ddl-auto=update spring.datasource.url=${DB_URL} spring.datasource.username=${DB_USERNAME} spring.datasource.password=${DB_PASSWORD}