From 801a0341a95e40104d481e72436f4b3e273b4a01 Mon Sep 17 00:00:00 2001 From: fp024 Date: Thu, 8 Feb 2024 23:10:35 +0900 Subject: [PATCH] =?UTF-8?q?DROP=EB=AC=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Action의 로그를 보면 DROP이 제대로 실행되지 않는 것은 확실함. --- .../src/main/resources/init-sql/drop-table.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/introducing-interceptors/interceptors-struts/src/main/resources/init-sql/drop-table.sql b/introducing-interceptors/interceptors-struts/src/main/resources/init-sql/drop-table.sql index aa0de50..4d70333 100644 --- a/introducing-interceptors/interceptors-struts/src/main/resources/init-sql/drop-table.sql +++ b/introducing-interceptors/interceptors-struts/src/main/resources/init-sql/drop-table.sql @@ -1 +1 @@ -DROP TABLE person CASCADE IF EXISTS; +DROP TABLE IF EXISTS person CASCADE; \ No newline at end of file