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