fix: dont store script in migration
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user