sql formatting pass

main
Zynh0722 2023-11-04 02:43:12 -07:00
parent a74808859d
commit d56686fc03
3 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
CREATE TABLE shifts CREATE TABLE
( shifts (
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT, id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
start DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, start DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
end DATETIME DEFAULT NULL end DATETIME DEFAULT NULL
) )

View File

@ -1,2 +1,2 @@
-- This file should undo anything in `up.sql` -- This file should undo anything in `up.sql`
DROP TABLE drinks DROP TABLE drinks;

View File

@ -1,10 +1,10 @@
-- Your SQL goes here -- Your SQL goes here
CREATE TABLE drinks CREATE TABLE
( drinks (
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT, id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
price INT UNSIGNED NOT NULL, price INT UNSIGNED NOT NULL,
quantity INT UNSIGNED NOT NULL, quantity INT UNSIGNED NOT NULL,
shift INT UNSIGNED NOT NULL, shift INT UNSIGNED NOT NULL,
time DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, time DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
FOREIGN KEY (shift) REFERENCES shifts(id) ON DELETE CASCADE FOREIGN KEY (shift) REFERENCES shifts (id) ON DELETE CASCADE
) )