forked from Kernel360/f1-KernelSquare-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Kernel360#95 from mooncw/feature/Kernel360#94-add-…
…leveldata [setting] data.sql에 모든 level 데이터 추가
- Loading branch information
Showing
5 changed files
with
56 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ INSERT INTO member (created_date, experience, level_id, modified_date, email, im | |
VALUES ('2023-12-19T09:00:00', 0, 1, '2023-12-19T09:00:00', '[email protected]', 'member/1e47ea4d-a2cb-4de7-b7e4-a0f7bd1fa24cduck.png', | ||
'자바덕', '$2a$10$OiSze5PH.QQ1uH7xWp.trOAbmv6rbi6foM7HsyDrVxn8RtZDMfWs.', 'introduction'); | ||
|
||
INSERT INTO authority (authority_type) | ||
VALUES ('ROLE_USER'); | ||
|
||
INSERT INTO member_authority (member_id, authority_id) | ||
VALUES (1, 1); | ||
|
||
INSERT INTO question (closed_status, created_date, id, member_id, modified_date, view_count, content, image_url, title) | ||
VALUES (1, '2023-12-19T09:00:00', 1, 1, '2023-12-21T09:00:00', 20, 'No content', 'question/d1c27379-2d08-4a6a-9d97-368124a50900thumb.jpg', '시간복잡도 사진'); | ||
|
||
|
@@ -12,11 +18,32 @@ VALUES ('2023-12-19T09:00:00', '2023-12-19T09:00:00', 'JavaScript'); | |
INSERT INTO tech_stack (created_date, modified_date, skill) | ||
VALUES ('2023-12-19T09:00:00', '2023-12-19T09:00:00', 'Python'); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level1to2.png', 1); | ||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level1to2.png', 1, 200); | ||
|
||
INSERT INTO authority (authority_type) | ||
VALUES ('ROLE_USER'); | ||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level1to2.png', 2, 500); | ||
|
||
INSERT INTO member_authority (member_id, authority_id) | ||
VALUES (1, 1) | ||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level3to4.png', 3, 1800); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level3to4.png', 4, 2500); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level5.png', 5, 5000); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level6.png', 6, 10000); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level7.png', 7, 20000); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level8.png', 8, 45000); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level9.png', 9, 100000); | ||
|
||
INSERT INTO level (created_date, modified_date, image_url, name, level_upper_limit) | ||
VALUES ('2023-12-12T09:00:00', '2023-12-12T09:00:00', 'level/level10.png', 10, 9223372036854775807); |
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