From d6987dc933e9397ca83acc9545deab7a14b503b1 Mon Sep 17 00:00:00 2001 From: pricelees Date: Sat, 27 Sep 2025 15:00:44 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20mysql=20=EB=8D=94=EB=AF=B8=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=83=9D=EC=84=B1=EC=9D=84=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20=EB=B3=84=EB=8F=84=EC=9D=98=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/resources/application-test-mysql.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/test/resources/application-test-mysql.yaml diff --git a/src/test/resources/application-test-mysql.yaml b/src/test/resources/application-test-mysql.yaml new file mode 100644 index 00000000..2de76150 --- /dev/null +++ b/src/test/resources/application-test-mysql.yaml @@ -0,0 +1,10 @@ +spring: + datasource: + hikari: + jdbc-url: jdbc:mysql://localhost:3306/roomescape + driver-class-name: com.mysql.cj.jdbc.Driver + username: root + password: init + sql: + init: + mode: never \ No newline at end of file