unis_sip/sql/20260904update.sql

12 lines
683 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

-- =============================================================
-- 2029-09-04 产品管理新增「预装系统类型」字段升级脚本
-- 功能说明:
-- 1. product_info 表新增 pre_system_type 字段
-- 2. 新增「预装系统类型」字典类型pre_system_type
-- 注意:字典具体选项请在【系统管理-字典管理】中手工维护
-- =============================================================
-- 1. 产品表新增「预装系统类型」字段(仅硬件产品填写,非必填,可为空)
ALTER TABLE `product_info`
ADD COLUMN `pre_system_type` varchar(100) DEFAULT NULL COMMENT '预装系统类型' AFTER `cpu_architecture`;