create table public.migration ( from_revision text not null , to_revision text not null , performed_on timestamp not null default now() ); insert into migration (from_revision, to_revision) values ('empty', 'empty');