mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
6 lines
219 B
SQL
6 lines
219 B
SQL
CREATE TABLE IF NOT EXISTS `TocEntries` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`TocEntry` text NOT NULL,
|
|
`SortOrder` smallint unsigned NOT NULL,
|
|
KEY `index1` (`EbookId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|