-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
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; |