publish 0.8.7

This commit is contained in:
2715557295@qq.com
2023-03-22 17:22:54 +08:00
parent d63b6ab094
commit 86384a1f23
2 changed files with 10 additions and 2 deletions

View File

@@ -33,10 +33,12 @@ 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) not null 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;