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

11 lines
302 B
MySQL
Raw Normal View History

2023-09-30 21:51:11 +00:00
-- Your SQL goes here
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
)