insert into users (id, auth, email, password)
values (1, "USER", "example@naver.com", "$2a$10$c/PwCYTZhxxKPoCCuqzMNulxF3VMel2BHVizwtbBNiONQkHgTb3lC")
insert into hairshop(id, name, phone_number, start_time, end_time,
reservation_range, reservation_start_time, reservation_end_time,
same_day_available, load_name_number, profile_image, introduction)
values(1, '헤어샵', '010-1234-5678', '00:00', '23:30', '1', '00:00', '23:30',
true, '주소', '이미지', '소개');
values (1, "designer", "image", "hello", "DESIGNER", 1);
insert into designer (id, name, profile_img, introduction, position, hairshop_id)
values (2, "designer", "image", "hello", "DESIGNER", 1);
insert into designer (id, name, profile_img, introduction, position, hairshop_id)
values (3, "designer", "image", "hello", "DESIGNER", 1);
insert into designer (id, name, profile_img, introduction, position, hairshop_id)
values (4, "designer", "image", "hello", "DESIGNER", 1);
insert into designer (id, name, profile_img, introduction, position, hairshop_id)
values (5, "designer", "image", "hello", "DESIGNER", 1);
insert into menu(id, name, price, discount, gender, type, exposed_time, image, hairshop_id)
values(1, '컽', 9999, 99, 'man', 'makeup', 30, '이미지', 1);
오늘할일
- 예약 가능시간 조회 테스트
- 예약 생성 테스트
- 코드 수정
- Gender, Type 이넘 클래스의 값, 별칭 순서 변경