fix: dont store script in migration
All checks were successful
migrate-devel / migrate-devel (push) Successful in 7s
migrate-stage / migrate-stage (push) Successful in 7s

This commit is contained in:
Orion Kindel
2023-07-15 18:47:00 -04:00
parent 2345c61b8c
commit 8b08d9f9c8
2 changed files with 3 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ 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', '');
insert into migration (from_revision, to_revision) values ('empty', 'empty');