We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f395fe commit cb83300Copy full SHA for cb83300
test/ecto/adapters/sqlite3/data_type_test.exs
@@ -31,7 +31,7 @@ defmodule Ecto.Adapters.SQLite3.DataTypeTest do
31
32
Application.put_env(:ecto_sqlite3, :binary_id_type, :binary)
33
34
- assert DataType.column_type(:binary_id, nil) == "UUID"
+ assert DataType.column_type(:binary_id, nil) == "BLOB"
35
end
36
37
test ":string is TEXT" do
@@ -43,7 +43,7 @@ defmodule Ecto.Adapters.SQLite3.DataTypeTest do
43
44
Application.put_env(:ecto_sqlite3, :uuid_type, :binary)
45
46
- assert DataType.column_type(:uuid, nil) == "UUID"
+ assert DataType.column_type(:uuid, nil) == "BLOB"
47
48
49
test ":map is JSON" do
0 commit comments