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

10 lines
481 B
SQL
Raw Permalink 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 路径
-- 执行前请备份数据
-- Dify 路径支持域名、IP、IP:端口 等格式
-- ----------------------------
ALTER TABLE `system_tenant`
ADD COLUMN `tenant_prompt` varchar(2000) NULL DEFAULT '' COMMENT '租户提示词' AFTER `account_count`,
ADD COLUMN `dify_path` varchar(500) NULL DEFAULT '' COMMENT 'Dify 路径支持域名、IP、IP:端口)' AFTER `tenant_prompt`;