create table stores ( key text primary key not null, created_at timestamptz not null default now() ); insert into stores (key) values ('women'); insert into stores (key) values ('men'); insert into stores (key) values ('kids'); insert into stores (key) values ('home');