wiki优化

This commit is contained in:
暮光:城中城
2020-08-02 18:02:37 +08:00
parent e281b5d47d
commit 6d2e24f455
19 changed files with 1407 additions and 37 deletions

View File

@@ -426,4 +426,22 @@ CREATE TABLE `db_transfer_task` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
DROP TABLE IF EXISTS `user_message`;
CREATE TABLE `user_message` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`sys_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT ' 1=manage 2=wiki 3=db',
`msg_type` int NOT NULL DEFAULT 1 COMMENT ' 1= 2=wiki文档创建 3=wiki文档删除 4=wiki文档编辑 5=wiki文档权限修改 6=wiki文档评论 7=wiki文档删除评论 8=wiki文档上传附件',
`data_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID',
`data_desc` varchar(100) NULL DEFAULT NULL COMMENT '',
`msg_content` varchar(255) NULL DEFAULT NULL COMMENT '',
`msg_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ' 0= 1= 2=',
`operator_user_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID',
`operator_user_name` varchar(20) NULL DEFAULT NULL COMMENT '',
`affect_user_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID',
`affect_user_name` varchar(20) NULL DEFAULT NULL COMMENT '',
`accept_user_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID',
`creation_time` datetime(0) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '' ROW_FORMAT = Compact;
SET FOREIGN_KEY_CHECKS = 1;