kurtbuilds / ormlite

An ORM in Rust for developers that love SQL.
https://crates.io/crates/ormlite
MIT License
236 stars 13 forks source link

sqlite Migrations #58

Open Swivelgames opened 6 days ago

Swivelgames commented 6 days ago

Bit of a short one here:

Are there any plans to add sqlite support to ormlite-cli? Or potentially wrap sqlx-cli?

kurtbuilds commented 6 days ago

i don't use sqlite enough to build it myself. all the machinery is based on sqlmo and sqlx, though, so it shouldn't be too hard to add support for it, and i'd welcome that PR. the only thing unique to postgres is the queries that autodetect the schema of the existing library - i don't know offhand how to do the same introspection with sqlite, though i'm sure it's doable.