clubmanager/migrations/2023-09-24-104018_create_shifts/up.sql
Zynh0722 96dd76e463 feat: shifts
Oh boy what a mess this was lmao, I definitely should have done this is more atomic commits

But it could also be argued that very little of this is standalone
2023-09-26 02:18:12 -07:00

6 lines
151 B
SQL

CREATE TABLE shifts
(
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
start DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
end DATETIME DEFAULT NULL
)