Authored by wangnan

Update 20161201 upgrade.md

... ... @@ -64,31 +64,4 @@ sh /opt/canal.deployer-1.0.20/bin/startup.sh
# 5. 其他
机器人sql
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for robot_question
-- ----------------------------
DROP TABLE IF EXISTS `robot_question`;
CREATE TABLE `robot_question` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`sort_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类ID',
`question` varchar(255) NOT NULL COMMENT '问题',
`answer` text NOT NULL COMMENT '答案',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '创建人',
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`is_disable` int(11) NOT NULL DEFAULT '2' COMMENT '是否禁用 1为是 2为否',
`effect_time` int(11) NOT NULL DEFAULT '0' COMMENT '生效时间',
`update_pid` int(11) NOT NULL DEFAULT '0' COMMENT '修改人',
`update_time` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
`question_seq` int(11) NOT NULL DEFAULT '0' COMMENT '显示顺序',
`click_times` int(11) NOT NULL DEFAULT '0' COMMENT '点击次数',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of robot_question
-- ----------------------------
# 5. 其他
\ No newline at end of file
... ...