Matthew Johnston
Matthew Johnston
Ooof, I can't use this in our production use case at the moment. We are on PG12, but are working towards migrating to PG14.
So I designed `ecto_sqlite3` to have the ability to swap out different sqlite backend implementations. All you need to do honestly is build a new library that implements the `db_connection`...
That is correct, `ecto_sqlite` does not support alter because well, sqlite doesn't support alter 😉
To not use the precompiled binaries, throw this into your config ``` config :exqlite, make_force_build: true ``` https://github.com/elixir-sqlite/exqlite#compile-time-configuration
@axelson I'll look into what it is going to take to compile for a `musl` based distribution.
@cocoa-xu have you had anyone ask for musl precompiled binary support before?
@axelson we have precompiled binaries for `musl` now under `v0.3.17`
I do believe it should warn and just fallback to building it from source. Or even not say anything at all and just build from source.
It certainly can be.