From 73062293e127141414770e2063ceb36c8955f08c Mon Sep 17 00:00:00 2001 From: zekai Date: Tue, 19 Jan 2021 14:40:52 -0500 Subject: [PATCH] changed back to create for RDS snapshot --- 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 e32ffba01..eb7841923 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -22,7 +22,7 @@ spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.jpa.hibernate.use-new-id-generator-mappings= false #set to 'none' to .ddl-auto if you want to create mysql tables from "schema.sql" files instead of from entities -spring.jpa.hibernate.ddl-auto = update +spring.jpa.hibernate.ddl-auto = create-drop spring.jpa.generate-ddl=true spring.jpa.show-sql=true #tells hibernate where to find initial data to import into mysql if .ddl-auto method is used