i am interested in using sqldelight for postgres o...
# squarelibraries
w
i am interested in using sqldelight for postgres on jvm 1. is there a list of features not supported yet? 2. i see sqldelight generates the migrations but does it also run them?
h
There is no such list. If you miss something, add a PR and we will merge it! You need to run the migrations manually, including storing the current version, but this is easily server side because you control when doing the migration (unlike decentral app updates with the possibility of missing some updates).
w
Thank you. is there documentation for this? i didn’t see any under the psql page on the doc site
for running migrations that is
g
Here is an example for Flyway/Liquibase https://github.com/griffio/sqldelight-postgres-01 as you may want to use your existing tool for migrations. The latest sqldelight
2.0.2
release should have all these changes, otherwise 📸 snapshot releases will be the best way to get the latest Postgresql supported features.
🙌 2