db/schema/0001_migrations.sql
Orion Kindel 8b08d9f9c8
All checks were successful
migrate-devel / migrate-devel (push) Successful in 7s
migrate-stage / migrate-stage (push) Successful in 7s
fix: dont store script in migration
2023-07-15 18:47:00 -04:00

8 lines
229 B
SQL

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