mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -04:00
6 lines
207 B
SQL
6 lines
207 B
SQL
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;
|