Files
ruoyi-vue-pro/sql/mysql/tenant_dify_ip_to_path.sql

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

-- ----------------------------
-- 将 dify_ip 字段重命名为 dify_path支持域名、IP、IP:端口)
-- 仅当已执行过 tenant_add_prompt_dify_ip.sql 且存在 dify_ip 时执行
-- 执行前请备份数据
-- ----------------------------
ALTER TABLE `system_tenant`
CHANGE COLUMN `dify_ip` `dify_path` varchar(500) NULL DEFAULT '' COMMENT 'Dify 路径支持域名、IP、IP:端口)';