clubmanager/migrations/2023-11-04-093417_create_shows/up.sql

11 lines
322 B
SQL

-- Your SQL goes here
CREATE TABLE
shows (
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
dancer INT UNSIGNED NOT NULL,
start DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
estimated_end DATETIME NOT NULL,
end DATETIME DEFAULT NULL,
FOREIGN KEY (dancer) REFERENCES dancers (id) ON DELETE RESTRICT
)