Initial Ebook DB schema

This commit is contained in:
Mike Colagrosso 2024-02-19 22:49:20 -07:00 committed by Alex Cabal
parent f97539f399
commit 073f138c47
9 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,7 @@
CREATE TABLE `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;