Описание таблицы event_trap.bo_process_schedule
create table bo_process_schedule
(
id bigserial primary key,
bo_process_id varchar(20) not null,
run_way_id varchar(20) not null,
date_time_of_event timestamp not null,
boi_id varchar(20),
count_of_repeat numeric default 0 not null,
count_of_repeat_on_error numeric default 0 not null,
count_of_repeat_on_error_increment_at timestamp,
error_log text,
done smallint default 0 not null,
actual smallint default 0 not null
);