mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
7 lines
425 B
SQL
7 lines
425 B
SQL
CREATE TABLE IF NOT EXISTS `EbookSources` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`Type` enum('project_gutenberg', 'project_gutenberg_australia', 'project_gutenberg_canada', 'internet_archive', 'hathi_trust', 'wikisource', 'google_books', 'faded_page', 'other') DEFAULT 'other',
|
|
`Url` varchar(255) NOT NULL,
|
|
`SortOrder` tinyint(3) unsigned NOT NULL,
|
|
KEY `index1` (`EbookId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|