mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
7 lines
235 B
SQL
7 lines
235 B
SQL
CREATE TABLE IF NOT EXISTS `GitCommits` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`Created` datetime NOT NULL,
|
|
`Message` text NOT NULL,
|
|
`Hash` char(40) NOT NULL,
|
|
KEY `index1` (`EbookId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|