Skip to content

Commit 99c5e6d

Browse files
authored
Link to schemaless queries in docstring (#20)
Change the link for [schemaless Ecto queries] to https://hexdocs.pm/ecto/schemaless-queries.html
1 parent 3ef1bf4 commit 99c5e6d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/ecto/adapters/sqlite3.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ defmodule Ecto.Adapters.SQLite3 do
111111
112112
### Schemaless queries
113113
114-
Using [schemaless Ecto queries][5] will not work well with SQLite. This is because
114+
Using [schemaless Ecto queries][7] will not work well with SQLite. This is because
115115
the Ecto SQLite adapter relies heavily on the schema to support a rich array of Elixir
116116
types, despite the fact SQLite only has [five storage classes][5]. The query will still
117117
work and return data, but you will need to do this mapping on your own.
@@ -120,6 +120,7 @@ defmodule Ecto.Adapters.SQLite3 do
120120
[4]: https://www.sqlite.org/whentouse.html
121121
[5]: https://www.sqlite.org/datatype3.html
122122
[6]: https://www.sqlite.org/datatype3.html#collating_sequences
123+
[7]: https://hexdocs.pm/ecto/schemaless-queries.html
123124
"""
124125

125126
use Ecto.Adapters.SQL,

0 commit comments

Comments
 (0)