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);