publish 0.8.8

This commit is contained in:
2715557295@qq.com
2023-03-24 09:39:04 +08:00
parent 86384a1f23
commit c446ee8f75
13 changed files with 38 additions and 42 deletions

View File

@@ -33,12 +33,11 @@ CREATE TABLE `core_log_process` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '日志-过程' ROW_FORMAT = Dynamic;
ALTER TABLE core_log_process ADD status int(6) default 0 COMMENT '状态0-未完成1-已完成)';
-- ----------------------------
-- Records of core_log_process
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;
ALTER TABLE core_log_process ADD status int(6) default 0 COMMENT '状态0-未完成1-已完成)';
commit;