📄 install.sql
字号:
CREATE TABLE `__DB_PREFIX__adultQuest_answers` (
`aid` int(11) NOT NULL auto_increment,
`qid` int(11) NOT NULL default '0',
`answer` text,
`pid` int(11) NOT NULL default '0',
`uid` int(11) NOT NULL default '0',
PRIMARY KEY (`aid`)
) ;
CREATE TABLE `__DB_PREFIX__adultQuest_pages` (
`pid` int(11) NOT NULL auto_increment,
`tname` text NOT NULL,
`ord` text NOT NULL,
`qnumber` int(11) NOT NULL default '0',
PRIMARY KEY (`pid`)
) AUTO_INCREMENT=6 ;
INSERT INTO `__DB_PREFIX__adultQuest_pages` VALUES (1, 'sexualactivities.tpl', '1', 7);
INSERT INTO `__DB_PREFIX__adultQuest_pages` VALUES (2, 'sexualinterests.tpl', '2', 7);
INSERT INTO `__DB_PREFIX__adultQuest_pages` VALUES (3, 'fantasies.tpl', '3', 9);
INSERT INTO `__DB_PREFIX__adultQuest_pages` VALUES (4, 'sexualaccesories.tpl', '4', 9);
INSERT INTO `__DB_PREFIX__adultQuest_pages` VALUES (5, 'physicalstuff.tpl', '5', 15);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -