4x/data/0doc/V2.7.5/data_center_V2.7.5_mysql.sql

7 lines
708 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.

ALTER TABLE `data_alarm_push_template`
ADD COLUMN `tencent_template_id` bigint(20) NULL COMMENT '腾讯模板id' AFTER `update_at`,
ADD COLUMN `state` int NULL COMMENT '状态 0未审核1已审核-1表示审核未通过或审核失败' AFTER `tencent_template_id`,
ADD COLUMN `reason` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '失败原因' AFTER `state`;
ALTER TABLE `data_alarm_push_log` ADD COLUMN `reason` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '失败原因';
ALTER TABLE `data_indicator_point_tag_rel`
MODIFY COLUMN `tag_value` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT NULL COMMENT '标签值' AFTER `tag_key`;