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

7 lines
310 B
SQL

CREATE TABLE IF NOT EXISTS `CollectionEbooks` (
`EbookId` int(10) unsigned NOT NULL,
`CollectionId` int(10) unsigned NOT NULL,
`SequenceNumber` int(10) unsigned NULL,
`SortOrder` tinyint(3) unsigned NOT NULL,
UNIQUE KEY `idxUnique` (`EbookId`,`CollectionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;