mirror of
https://github.com/standardebooks/web.git
synced 2025-07-17 11:56:38 -04:00
Change Created datetime to timestamp to match 88c3049
This commit is contained in:
parent
c3c4cbddca
commit
312e2105ec
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
CREATE TABLE IF NOT EXISTS `Ebooks` (
|
CREATE TABLE IF NOT EXISTS `Ebooks` (
|
||||||
`EbookId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`EbookId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`Identifier` varchar(511) NOT NULL,
|
`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,
|
`Updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
`WwwFilesystemPath` varchar(511) NOT NULL,
|
`WwwFilesystemPath` varchar(511) NOT NULL,
|
||||||
`RepoFilesystemPath` varchar(511) NOT NULL,
|
`RepoFilesystemPath` varchar(511) NOT NULL,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue