2023-06-11 21:43:53 +00:00
|
|
|
create table public.migration
|
|
|
|
( from_revision text not null
|
|
|
|
, to_revision text not null
|
|
|
|
, performed_on timestamp not null default now()
|
|
|
|
);
|
|
|
|
|
2023-07-15 22:47:00 +00:00
|
|
|
insert into migration (from_revision, to_revision) values ('empty', 'empty');
|