mirror of
https://github.com/standardebooks/web.git
synced 2025-07-16 03:16:36 -04:00
Initial Ebook DB schema
This commit is contained in:
parent
f97539f399
commit
073f138c47
9 changed files with 87 additions and 0 deletions
6
config/sql/se/EbookSources.sql
Normal file
6
config/sql/se/EbookSources.sql
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue