aidmt-ms/sql/work_plan_add_implementatio...

12 lines
463 B
SQL
Raw 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.

-- 为 work_plan 表添加实施状态字段
-- 实施状态0未实施1实施中2整改中3待完工确认
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- 添加实施状态字段
ALTER TABLE `work_plan`
ADD COLUMN `implementation_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '实施状态0未实施1实施中2整改中3待完工确认' AFTER `project_status`;
SET FOREIGN_KEY_CHECKS = 1;