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
If database table column has type array (deprecated but possible type) it is impossible to insert/update array into this field.
If database table column has type json, then only way to insert/update data in database, is to switch entity variable type from array to mixed and set data using valid json string instead of array
If database table column has type
array
(deprecated but possible type) it is impossible to insert/update array into this field.If database table column has type
json
, then only way to insert/update data in database, is to switch entity variable type fromarray
tomixed
and set data using valid json string instead of arrayold:
new:
Edit:
null|array|string
version seems to break entity mapper, need to usemixed
insteadThe text was updated successfully, but these errors were encountered: