You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2024. It is now read-only.
if a model include a multiLineString it must be exclude of searcheable fields to avoid following error on model index page. "adresse" is the multiLineString field.
SQLSTATE[HY000]: General error: 1210 Mauvais arguments à like
SELECT
count(*) AS aggregate
FROM
`senders`
WHERE
(
`id` LIKE % %
OR `name` LIKE % %
OR `mail` LIKE % %
OR `phone` LIKE % %
OR `adresse` LIKE % %
OR `zip_code` LIKE % %
OR `city` LIKE % %
OR `logo` LIKE % %
OR `company_logo` LIKE % %
OR `sender_media_id` LIKE % %
OR `created_at` LIKE % %
OR `updated_at` LIKE % %
)
And yes, i do a mistake, i want a text column, not a multiLineString :)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
if a model include a multiLineString it must be exclude of searcheable fields to avoid following error on model index page. "adresse" is the multiLineString field.
And yes, i do a mistake, i want a text column, not a multiLineString :)
The text was updated successfully, but these errors were encountered: