web/config/sql/se/TocEntries.sql
Mike Colagrosso 95a1edc8b7 Bump TocEntries.SortOrder from tinyint to smallint
Ebooks can have more than 255 TocEntries. (572 is the current highest.)
2024-11-04 13:16:56 -06:00

6 lines
205 B
SQL

CREATE TABLE `TocEntries` (
`EbookId` int(10) unsigned NOT NULL,
`TocEntry` text NOT NULL,
`SortOrder` smallint unsigned NOT NULL,
KEY `index1` (`EbookId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;