evoToK3Cloud/script/sql/update/process-order-pro-need-process.sql
2026-08-11 14:29:31 +08:00

9 lines
375 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.

-- 项目令号是否做工艺0否 1是默认 1
-- 若报 1060 Duplicate column name说明列已存在可忽略
ALTER TABLE `process_order_pro`
ADD COLUMN `need_process` tinyint(1) NOT NULL DEFAULT 1 COMMENT '是否做工艺0否 1是' AFTER `is_download`;
-- ========== 验证 ==========
-- SHOW COLUMNS FROM process_order_pro LIKE 'need_process';