Skip to content

Commit

Permalink
Feat: 사용자 타입, 학교 초기화 데이터 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
TGoddessana committed Jan 6, 2025
1 parent cdf3b97 commit bec2fc0
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/main/resources/db/initial-data.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
-- 사용자 타입
INSERT INTO user_types (name)
VALUES ('MENTOR'),
('MENTEE');


-- 학교
INSERT INTO university (name)
VALUES ('서울대학교'),
('연세대학교'),
('고려대학교');


-- 전공
INSERT INTO majors (name)
VALUES ('피아노'),
('작곡'),
Expand All @@ -7,9 +21,3 @@ VALUES ('피아노'),
('보컬'),
('전자음악'),
('관악');


INSERT INTO university (name)
VALUES ('서울대학교'),
('연세대학교'),
('고려대학교');

0 comments on commit bec2fc0

Please sign in to comment.