-
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.
- Loading branch information
amaran-th
committed
Aug 25, 2024
1 parent
3e6a415
commit 0e2bd89
Showing
2 changed files
with
19 additions
and
9 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 |
---|---|---|
@@ -1,16 +1,25 @@ | ||
## member(student) | ||
insert into member (email, name, password, phone_number, is_authorized, is_deleted) | ||
values ('[email protected]', '송세연', 'password', '010-0000-0000', false); | ||
values ('[email protected]', '송세연', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000', | ||
true, false); | ||
|
||
insert into student_member (id, member_id, major_id, minor_id, double_major_id, career, career_detail) | ||
values (202055558, 1, 1, null, null, 'EMPLOYMENT_COMPANY', 'IT 기업 개발자'); | ||
|
||
insert into member (email, name, password, phone_number, is_authorized, is_deleted) | ||
values ('[email protected]', '아마란스', 'password', '010-0000-0000', false); | ||
values ('[email protected]', '이다은', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000', | ||
true, false); | ||
|
||
insert into student_member (id, member_id, major_id, minor_id, double_major_id, career, career_detail) | ||
values (202055555, 2, 1, null, null, 'GRADUATE_SCHOOL', 'IT 기업 개발자'); | ||
|
||
insert into member (email, name, password, phone_number, is_authorized, is_deleted) | ||
values ('[email protected]', '김하윤', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000', | ||
true, false); | ||
|
||
insert into faculty_member (id, member_id) | ||
values (1, 3); | ||
|
||
## milestone histories | ||
INSERT INTO sw_css.milestone_history (id, milestone_id, student_id, description, file_url, status, reject_reason, count, | ||
activated_at, is_deleted, created_at) | ||
|