Change Created datetime to timestamp to match 88c3049

This commit is contained in:
Mike Colagrosso 2024-10-27 21:27:51 -06:00 committed by Alex Cabal
parent c3c4cbddca
commit 312e2105ec

View file

@ -1,7 +1,7 @@
CREATE TABLE IF NOT EXISTS `Ebooks` (
`EbookId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Identifier` varchar(511) NOT NULL,
`Created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`WwwFilesystemPath` varchar(511) NOT NULL,
`RepoFilesystemPath` varchar(511) NOT NULL,