-
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
1 changed file
with
18 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
INSERT INTO balance_content (category, name) | ||
VALUES ('EXAMPLE', '민초 vs 반민초'), | ||
('EXAMPLE', '월 150 백수 vs 월 500 직장인'), | ||
('EXAMPLE', '팔만대장경 다 읽기 vs 대장내시경 팔만번 하기'), | ||
('EXAMPLE', '개구리 맛 초콜릿 vs 초콜릿 맛 개구리'), | ||
('EXAMPLE', '언제 죽을 지 알기 vs 어떻게 죽을 지 알기'); | ||
|
||
INSERT INTO balance_option (name, balance_content_id) | ||
VALUES ('민초', 1), | ||
('반민초', 1), | ||
('월 150 백수', 2), | ||
('월 500 직장인', 2), | ||
('팔만대장경 다 읽기', 3), | ||
('대장내시경 팔만번 하기', 3), | ||
('개구리 맛 초콜릿', 4), | ||
('초콜릿 맛 개구리', 4), | ||
('언제 죽을 지 알기', 5), | ||
('어떻게 죽을 지 알기', 5); |