File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,10 @@ defmodule Ecto.Adapters.SQLite3 do
94
94
The `:binary_id_type` configuration option allows configuring how `:binary_id` fields
95
95
are stored in the database as well as the type of the column in which these IDs will
96
96
be stored. The possible values are:
97
- * `:string` (default): IDs are stored as strings, and the type of the column is `TEXT`.
98
- * `:binary`: IDs are stored in their raw binary form, and the type of the column is `BLOB`.
97
+
98
+ * `:string` - IDs are stored as strings, and the type of the column is `TEXT`. This is
99
+ the default.
100
+ * `:binary` - IDs are stored in their raw binary form, and the type of the column is `BLOB`.
99
101
100
102
The main differences between the two formats are as follows:
101
103
* When stored as binary, UUIDs require much less space in the database. IDs stored as
@@ -128,8 +130,8 @@ defmodule Ecto.Adapters.SQLite3 do
128
130
129
131
### LIKE match on BLOB columns
130
132
131
- We have the DSQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option set to true, as
132
- [recommended][3] by SQLite. This means you cannot do LIKE queries on BLOB columns.
133
+ We have the `SQLITE_LIKE_DOESNT_MATCH_BLOBS` compile-time definition option set to true,
134
+ as [recommended by SQLite][3] . This means you cannot do ` LIKE` queries on ` BLOB` columns.
133
135
134
136
### Case sensitivity
135
137
You can’t perform that action at this time.
0 commit comments