create table parameter_locations ( key text primary key not null, created_at timestamptz not null default now() ); insert into parameter_locations (key) values ('Path'); insert into parameter_locations (key) values ('Query'); insert into parameter_locations (key) values ('Form'); insert into parameter_locations (key) values ('Header');