mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 09:32:24 -04:00
5 lines
163 B
SQL
5 lines
163 B
SQL
CREATE TABLE `TocEntries` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`TocEntry` text NOT NULL,
|
|
KEY `index1` (`EbookId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|