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,6 @@
CREATE TABLE `EbookSources` (
`EbookId` int(10) unsigned NOT NULL,
`Type` tinyint(4) unsigned NOT NULL,
`Url` varchar(255) NOT NULL,
KEY `index1` (`EbookId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;