mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 23:30:35 -04:00
7 lines
301 B
SQL
7 lines
301 B
SQL
CREATE TABLE IF NOT EXISTS `EbookLocSubjects` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`LocSubjectId` int(10) unsigned NOT NULL,
|
|
`SortOrder` tinyint(3) unsigned NOT NULL,
|
|
UNIQUE KEY `idxUnique` (`EbookId`,`LocSubjectId`),
|
|
KEY `index1` (`LocSubjectId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|