db/schema/0001_migrations.sql

8 lines
229 B
MySQL
Raw Normal View History

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');