Change some datetime columns to timestamp

This commit is contained in:
Alex Cabal 2024-10-24 16:35:40 -05:00
parent 028c8237a5
commit 88c3049d7a
8 changed files with 10 additions and 10 deletions

View file

@ -3,8 +3,8 @@ CREATE TABLE IF NOT EXISTS `Artists` (
`Name` varchar(255) NOT NULL,
`UrlName` varchar(255) NOT NULL,
`DeathYear` smallint unsigned NULL,
`Created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Updated` timestamp NOT NULL,
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`ArtistId`),
UNIQUE KEY `idxUnique` (`UrlName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;