diff --git a/lib/ecto/adapters/sqlite3.ex b/lib/ecto/adapters/sqlite3.ex index d4ed0a6..ec609a8 100644 --- a/lib/ecto/adapters/sqlite3.ex +++ b/lib/ecto/adapters/sqlite3.ex @@ -479,7 +479,7 @@ defmodule Ecto.Adapters.SQLite3 do def dumpers(:uuid, type) do case Application.get_env(:ecto_sqlite3, :uuid_type, :string) do :string -> [] - :binary -> [type] + :binary -> [type, &Codec.blob_encode/1] end end