/*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qs_zz_DPageOption` ( `name` varchar(32) NOT NULL, `title` varchar(255) NOT NULL, `show` enum('n','y') NOT NULL, `value` enum('n','y') NOT NULL, `sorter` int(11) NOT NULL, PRIMARY KEY (`name`), KEY `name` (`name`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; INSERT INTO `qs_zz_DPageOption` (`name`, `title`, `show`, `value`, `sorter`) VALUES ('showInSiteMap','Show in Sitemap','y','n',1),('showInMenu','Show in Menu','y','n',2),('allowDelete','Allow delete','n','n',5),('isSecure','Secure page','n','n',6),('isIndexing','Include this page in search results','n','n',7),('final','Final page','n','n',8),('system','System (hidden in admin end)','n','n',9),('redirect','Redirect','y','n',10),('allowSubpages','Allow Subpages','n','y',11),('isAdditional','Is Additional','n','n',12),('showInCtrlMenu','Show in Ctrl Menu','n','n',13),('requireSu','Require su mode','n','n',14),('enabled','Show on user end','y','y',4),('showInFooter','Show in footer','y','n',3);