Описание таблицы event_trap.boi_save
create table delay_timer
(
id bigserial primary key,
date_of_event timestamp not null,
done smallint default 0 not null,
bo_process_step_id text not null,
count numeric default 0 not null,
count_increment_at timestamp,
error_log text,
created_at timestamp default clock_timestamp() not null,
actual smallint default 0 not null,
bo_process_id varchar(20),
active boolean default false
);