From 666e468d4b0c7020e8767765a831a0e67626d1f9 Mon Sep 17 00:00:00 2001 From: ktj1997 Date: Tue, 30 Jan 2024 01:07:58 +0900 Subject: [PATCH] fix: table ddl-auto --- storage/src/main/resources/application-storage-dev.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/storage/src/main/resources/application-storage-dev.yml b/storage/src/main/resources/application-storage-dev.yml index b526c9e..6b15020 100644 --- a/storage/src/main/resources/application-storage-dev.yml +++ b/storage/src/main/resources/application-storage-dev.yml @@ -3,3 +3,12 @@ database: enable: false key: 1234567890123456 iv: 1234567890123456 +spring: + jpa: + hibernate: + ddl-auto: create-drop + properties: + hibernate: + show_sql: true + format_sql: true + open-in-view: false \ No newline at end of file