work/data/2.8.0/2.8.9-2.8.13.sql
2024-01-03 09:54:57 +08:00

10 lines
604 B
SQL
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE `pearProject`.`pear_task` ADD COLUMN `done_by` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '完成人' AFTER `create_by`;
ALTER TABLE `pearProject`.`pear_task` ADD COLUMN `done_time` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '完成时间' AFTER `done_by`;
ALTER TABLE `pearProject`.`pear_task` ADD COLUMN `status` tinyint(2) NULL DEFAULT 0 COMMENT '执行状态。0未开始1已完成2进行中3挂起4测试中' AFTER `work_time`;
SET FOREIGN_KEY_CHECKS=1;