···9494 The `:binary_id_type` configuration option allows configuring how `:binary_id` fields
9595 are stored in the database as well as the type of the column in which these IDs will
9696 be stored. The possible values are:
9797- * `:string` (default): IDs are stored as strings, and the type of the column is `TEXT`.
9898- * `:binary`: IDs are stored in their raw binary form, and the type of the column is `BLOB`.
9797+9898+ * `:string` - IDs are stored as strings, and the type of the column is `TEXT`. This is
9999+ the default.
100100+ * `:binary` - IDs are stored in their raw binary form, and the type of the column is `BLOB`.
99101100102 The main differences between the two formats are as follows:
101103 * When stored as binary, UUIDs require much less space in the database. IDs stored as
···128130129131 ### LIKE match on BLOB columns
130132131131- We have the DSQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option set to true, as
132132- [recommended][3] by SQLite. This means you cannot do LIKE queries on BLOB columns.
133133+ We have the `SQLITE_LIKE_DOESNT_MATCH_BLOBS` compile-time definition option set to true,
134134+ as [recommended by SQLite][3]. This means you cannot do `LIKE` queries on `BLOB` columns.
133135134136 ### Case sensitivity
135137