4.0.13_20240710.sql 757 B

123456789
  1. -- [zbc] 添加企业微信agent_id配置项,中建需求;
  2. INSERT INTO `digital_operation`.`visual_subscribe_notify_conf` VALUES (NULL, 'agent_id', '', '企业微信agentId', 1, '111111', NULL);
  3. -- [zbc] 增加字段长度,适配中建企微,中建需求;
  4. ALTER TABLE `digital_operation`.`blade_user`
  5. MODIFY COLUMN `name` varchar(100) NULL DEFAULT NULL COMMENT '昵称' AFTER `password`,
  6. MODIFY COLUMN `real_name` varchar(100) NULL DEFAULT NULL COMMENT '真名' AFTER `name`;
  7. -- [wr] 添加企业微信 域名 配置项,中建需求;
  8. INSERT INTO `digital_operation`.`visual_subscribe_notify_conf` ( `attri_key`, `attri_value`, `attri_name`, `notify_type`, `tenant_id`, `sort`) VALUES ( 'corp_domain', NULL, '企业微信域名', 1, '111111', NULL);