Описание таблицы event_trap.trap_timer
create table trap_timer
(
id bigserial primary key,
boi_save_id bigint not null references boi_save,
arrow_id text not null,
date_of_event timestamp not null,
done smallint default 0 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,
active boolean default false
);