web/config/sql/se/TocEntries.sql
Mike Colagrosso c8e6524ef2 Remove primary key TocEntryId
Add a SortOrder column to order the TocEntries instead.
2024-11-04 13:16:56 -06:00

6 lines
207 B
SQL

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