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
When creating a content-element with nested elements, parentid is configured as int in the database but in the TCA, no default value is configured (-> so it is handled as string).
In our case, this causes empty Strings to be passed in the INSERT-Query, which in turn caused an SQL-Error when trying to import.
We patched it locally by just adding 'default' => 0 in the TCA for parentid.
The text was updated successfully, but these errors were encountered:
When creating a content-element with nested elements, parentid is configured as int in the database but in the TCA, no default value is configured (-> so it is handled as string).
In our case, this causes empty Strings to be passed in the INSERT-Query, which in turn caused an SQL-Error when trying to import.
We patched it locally by just adding 'default' => 0 in the TCA for parentid.
The text was updated successfully, but these errors were encountered: