web/config/sql/se/EbookSources.sql
2024-11-04 13:16:56 -06:00

6 lines
308 B
SQL

CREATE TABLE `EbookSources` (
`EbookId` int(10) unsigned NOT NULL,
`Type` enum('pg', 'pg_australia', 'pg_canada', 'ia', 'hathi_trust', 'wikisource', 'google_books', 'faded_page', 'other') DEFAULT 'other',
`Url` varchar(255) NOT NULL,
KEY `index1` (`EbookId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;