web/config/sql/se/GitCommits.sql
2024-11-04 13:16:56 -06:00

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;