db/schema/0001_migrations.sql
Orion Kindel 56957d380a
Some checks failed
migrate-devel / migrate-devel (push) Failing after 7s
migrate-stage / migrate-stage (push) Failing after 8s
feat: permissions
2023-07-14 21:13:33 -04: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', '');