Skip to content

Commit

Permalink
chore: dev환경 data.sql 작성 #61
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jul 24, 2024
1 parent 98b6667 commit 7c0c7ee
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions backend/src/main/resources/sql/data-dev.sql
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);

0 comments on commit 7c0c7ee

Please sign in to comment.