Skip to content

Instantly share code, notes, and snippets.

@OMGZui
Last active June 21, 2022 15:04
Show Gist options
  • Save OMGZui/815a146d484924b1dc88c5865493db48 to your computer and use it in GitHub Desktop.
Save OMGZui/815a146d484924b1dc88c5865493db48 to your computer and use it in GitHub Desktop.
CREATE TABLE `doc` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`prevId` int(11) DEFAULT NULL COMMENT 'prevID',
`siblingId` int(11) DEFAULT NULL COMMENT 'siblingID',
`position` int(11) DEFAULT NULL COMMENT 'position',
PRIMARY KEY (`id`),
KEY `idx_prevId` (`prevId`),
KEY `idx_siblingId` (`siblingId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment