Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
refactor: Update ml class in multiple components for responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
SakuraPuare committed Jun 18, 2024
1 parent 7d7397e commit bcd6a24
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion sql/flightmanagement.session.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ VALUES (
'merchant',
'[email protected]',
2
),
('staff', 'staff', '[email protected]', 8),
(
'passenger',
'passenger',
'[email protected]',
1
);
CREATE TABLE IF NOT EXISTS `airlines` (
`airline_id` BIGINT NULL AUTO_INCREMENT,
Expand Down Expand Up @@ -116,7 +123,8 @@ INSERT INTO passengers (
passenger_phone,
identity_number
)
VALUES (1, ' John Doe ', ' 1234567890 ', ' ABC123XYZ ');
VALUES (1, ' John Doe ', ' 1234567890 ', ' ABC123XYZ '),
(4, ' Jane Doe ', ' 0987654321 ', ' XYZ123ABC ');
CREATE TABLE IF NOT EXISTS `staffs` (
`staff_id` BIGINT NULL AUTO_INCREMENT,
`user_id` BIGINT NOT NULL,
Expand Down

0 comments on commit bcd6a24

Please sign in to comment.