Commit 98d956cc by karade

Update Andmebaasi deklaratsioon.sql

parent 29be1da2
Showing with 7 additions and 8 deletions
......@@ -2,6 +2,7 @@ CREATE TABLE `Flights`(
`id` INT NOT NULL AUTO_INCREMENT,
`destination` CHAR(255) NOT NULL,
`time` CHAR(255) NOT NULL,
`flightNum` CHAR(255) NOT NULL,
`seats` INT NOT NULL,
primary key(id)
);
......@@ -24,7 +25,6 @@ CREATE TABLE `Users`(
);
CREATE TABLE `Bookings`(
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`flightNum` CHAR(255) NOT NULL,
`bookingNumber` CHAR(255) NOT NULL,
`flight_id` INT NOT NULL,
`user_id` INT NOT NULL,
......@@ -34,10 +34,10 @@ CREATE TABLE `Bookings`(
);
INSERT INTO flights(destination, time, seats)
INSERT INTO flights(destination, time, flightNum, seats)
VALUES
("Helsinki", "050950JUN23", 72),
("Kuressaare", "021440JUN23", 72),
("Kardla", "081700JUN23", 72),
("Stockholm", "071230JUN23", 72),
("Riga", "122200JUN23", 72);
\ No newline at end of file
("Helsinki", "050950JUN23","EA7654", 72),
("Kuressaare", "021440JUN23","EA8433", 72),
("Kardla", "081700JUN23","EA5524", 72),
("Stockholm", "071230JUN23","EA5245", 72),
("Riga", "122200JUN23","EA9822", 72);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment