You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
alter table alarm_push_config
|
|
|
|
add struc_id int[] not null;
|
|
|
|
|
|
|
|
alter table alarm_push_config
|
|
|
|
add tactics varchar(32);
|
|
|
|
|
|
|
|
comment on column alarm_push_config.tactics is 'immediately 即时 / continue 持续 / abnormal_rate 异常率';
|
|
|
|
|
|
|
|
alter table alarm_push_config
|
|
|
|
add tactics_params jsonb;
|
|
|
|
|
|
|
|
comment on column alarm_push_config.tactics_params is '推送策略 tactics 的参数';
|
|
|
|
|
|
|
|
alter table alarm_push_config
|
|
|
|
add del bool default false not null;
|
|
|
|
|
|
|
|
ALTER TABLE alarm_push_config DROP COLUMN pep_project_id;
|
|
|
|
ALTER TABLE alarm_push_config ADD poms_project_id integer;
|