create table item_state_failed_causes ( key text primary key not null, created_at timestamptz not null default now() ); insert into item_state_failed_causes (key) values ('ErrorCause1'); insert into item_state_failed_causes (key) values ('ErrorCause2'); insert into item_state_failed_causes (key) values ('ErrorCause3');