Files
wvp-platform/数据库/aiot/迁移-添加global_params字段.sql

4 lines
323 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.

-- 为算法注册表添加全局参数字段
-- 用于存储用户自定义的全局默认参数JSON在配置推送时三级合并param_schema.default < global_params < bind.params
ALTER TABLE wvp_ai_algorithm ADD COLUMN global_params TEXT NULL COMMENT '用户自定义的全局默认参数JSON' AFTER param_schema;