clubmanager/migrations/2023-09-30-201752_create_dr.../up.sql

11 lines
320 B
MySQL
Raw Normal View History

2023-09-30 21:51:11 +00:00
-- Your SQL goes here
2023-11-04 09:43:12 +00:00
CREATE TABLE
drinks (
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
price INT UNSIGNED NOT NULL,
quantity INT UNSIGNED NOT NULL,
shift INT UNSIGNED NOT NULL,
time DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
FOREIGN KEY (shift) REFERENCES shifts (id) ON DELETE CASCADE
2023-11-04 09:56:05 +00:00
);