Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ Laravel also supports querying JSON column types on databases that provide suppo
->where('preferences->dining->meal', 'salad')
->get();

You may use `whereJsonContains` to query JSON arrays. This feature is not supported by the SQLite database:
You may use `whereJsonContains` to query JSON arrays. This feature is not supported by SQLite database versions less than 3.38.0:

$users = DB::table('users')
->whereJsonContains('options->languages', 'en')
Expand Down