db/schema/000_revision.sql
2023-06-11 16:43:53 -05:00

9 lines
273 B
SQL

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