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 b3e6590 commit 8bc50a0Copy full SHA for 8bc50a0
lib/ecto/adapters/sqlite3/data_type.ex
@@ -12,6 +12,7 @@ defmodule Ecto.Adapters.SQLite3.DataType do
12
def column_type(:serial, _opts), do: "INTEGER"
13
def column_type(:bigserial, _opts), do: "INTEGER"
14
def column_type(:boolean, _opts), do: "INTEGER"
15
+ def column_type(:integer, _opts), do: "INTEGER"
16
def column_type(:bigint, _opts), do: "INTEGER"
17
def column_type(:string, _opts), do: "TEXT"
18
def column_type(:float, _opts), do: "NUMERIC"
0 commit comments