7 lines
237 B
SQL
7 lines
237 B
SQL
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;
|