Allow multi-statement migration scripts
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
2025-03-12 08:23:16 +01:00
parent 9d5c0bcbb1
commit 82c7f57078
2 changed files with 20 additions and 9 deletions

View File

@@ -0,0 +1,3 @@
create table testTable(value text);
insert into testTable(value) values ('testValue');