An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

blob encode uuids if stored as binary

Sean Baildon (May 25, 2026, 1:25 AM EDT) df261373 7d214009

+1 -1
+1 -1
lib/ecto/adapters/sqlite3.ex
··· 479 479 def dumpers(:uuid, type) do 480 480 case Application.get_env(:ecto_sqlite3, :uuid_type, :string) do 481 481 :string -> [] 482 - :binary -> [type] 482 + :binary -> [type, &Codec.blob_encode/1] 483 483 end 484 484 end 485 485