Add comment

This commit is contained in:
Marcus Moore 2023-05-23 11:37:09 -07:00
parent f40e722397
commit 05a2e568d7
No known key found for this signature in database

View file

@ -279,6 +279,7 @@ trait Searchable
return implode("||' '||", $columns) . ' LIKE ?';
}
// Default to MySQL's concatenation method
return 'CONCAT(' . implode('," ",', $columns) . ') LIKE ?';
}
}