From febc05182a0c78beb730c9b5945e01fc5a47fc07 Mon Sep 17 00:00:00 2001 From: SSung023 <50323157+SSung023@users.noreply.github.com> Date: Mon, 8 Apr 2024 10:46:03 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=98=A4=EB=A5=98=EB=A1=9C=20?= =?UTF-8?q?=EC=9D=B8=ED=95=B4=20data.sql=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/data.sql | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/main/resources/data.sql diff --git a/src/main/resources/data.sql b/src/main/resources/data.sql deleted file mode 100644 index 349fcdea..00000000 --- a/src/main/resources/data.sql +++ /dev/null @@ -1,22 +0,0 @@ -INSERT INTO item (cost, created_at, deleted_at, updated_at, details, name, item_category) -SELECT * -FROM (SELECT 100 AS cost, - NULL AS created_at, - NULL AS deleted_at, - NULL AS updated_at, - '프로필을 꾸밀 수 있는 프레임입니다.' AS details, - '성탄절 프레임' AS name, - 'PROFILE_FRAME' AS item_category - UNION ALL - SELECT 100, NULL, NULL, NULL, '프로필을 꾸밀 수 있는 프레임입니다.', '어둠의 힘 프레임', 'PROFILE_FRAME' - UNION ALL - SELECT 100, NULL, NULL, NULL, '오늘의 인증을 넘길 수 있는 아이템입니다.', '인증 패스권', 'CERTIFICATION_PASSER' - UNION ALL - SELECT 100, - NULL, - NULL, - NULL, - '아이템 사용 시, 챌린지 성공 보상을 2배로 획득할 수 있는 아이템입니다.', - '챌린지 보상 획득 2배 아이템', - 'POINT_MULTIPLIER') AS new_items -WHERE (SELECT COUNT(*) FROM item) < 3; \ No newline at end of file