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.
23 lines
446 B
23 lines
446 B
2 years ago
|
|
||
|
|
||
|
create table alarm_confirm_log
|
||
|
(
|
||
|
id serial not null,
|
||
|
pep_user_id int null,
|
||
|
project_correlation_id int not null,
|
||
|
alarm_info json not null,
|
||
|
confirm_time timestamp not null,
|
||
|
confirm_content varchar not null
|
||
|
);
|
||
|
|
||
|
comment on table alarm_confirm_log is '告警确认日志表';
|
||
|
|
||
|
create unique index alarm_confirm_log_id_uindex
|
||
|
on alarm_confirm_log (id);
|
||
|
|
||
|
alter table alarm_confirm_log
|
||
|
add constraint alarm_confirm_log_pk
|
||
|
primary key (id);
|
||
|
|
||
|
|