Zynh0722
96dd76e463
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
6 lines
151 B
SQL
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
|
|
)
|