Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: users 더미 데이터 삭제 #261

Merged
merged 1 commit into from
Jan 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions backend/src/main/resources/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -288,20 +288,6 @@ VALUES ('충507C 세미나실', 20, '충무관 507', 'seminar1.jpg'),
('충506C 세미나실', 20, '충무관 506', 'seminar2.jpg');


-- User 더미 데이터 (10개)
INSERT INTO users (student_id, name, major, phone, role)
VALUES ('22010321', '정석민', '바이오융합공학과', '010-4523-7819', 'USER'),
('22010322', '박종호', '바이오융합공학과', '010-5634-8920', 'USER'),
('22010323', '최병준', '바이오융합공학과', '010-6745-9031', 'USER'),
('22010324', '이서준', '바이오융합공학과', '010-7856-0142', 'USER'),
('22010325', '윤서영', '바이오융합공학과', '010-8967-1253', 'USER'),
('22010326', '정우진', '바이오융합공학과', '010-9178-2364', 'USER'),
('22010327', '한유진', '바이오융합공학과', '010-1289-3475', 'USER'),
('22010328', '임태환', '바이오융합공학과', '010-2390-4586', 'USER'),
('22010329', '서윤아', '바이오융합공학과', '010-3401-5697', 'USER'),
('22010330', '문준호', '바이오융합공학과', '010-4512-6708', 'USER');


INSERT INTO reservation (start_time, end_time, purpose, etc, room_id, user_name, password, created_at, updated_at)
VALUES
('2024-12-01 09:00:00', '2024-12-01 11:00:00', 'MEETING', '홍성무교수님 랩미팅', 1, 'hongsm', 'password123', NOW(), NOW()),
Expand Down
Loading