Add basic migration test
All checks were successful
Build / build (push) Successful in 2m12s

This commit is contained in:
2025-02-19 05:33:47 +01:00
parent 43d6265c4c
commit 96b27ff99d
4 changed files with 109 additions and 85 deletions

View File

@@ -0,0 +1,3 @@
create table mydata (
value text
)

View File

@@ -0,0 +1,2 @@
insert into mydata (value)
values ('hello')