* Finish task #8085.

This commit is contained in:
holan20180123
2020-10-10 16:56:36 +08:00
parent 4262f4c782
commit 02eb03583d
9 changed files with 112 additions and 147 deletions
+6
View File
@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `zt_planstory` (
`plan` mediumint(8) unsigned NOT NULL,
`story` mediumint(8) unsigned NOT NULL,
`order` mediumint(9) NOT NULL,
UNIQUE KEY `unique` (`plan`,`story`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;