Last active
June 21, 2022 15:04
-
-
Save OMGZui/815a146d484924b1dc88c5865493db48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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