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
but this can't work, join condition are not supported by doctrine/dbal because the join method is not supported in all db engines for delete or update.
And this result whit a query like this:
UPDATE `sys_file_reference`
SET `tt_content`.`assets` = tt_content.media,
`sys_file_reference`.`fieldname` = ?,
`tt_content`.`media` = ?
WHERE ((`tt_content`.`CType` = ?) AND (`media` > ?));
and the error:
(1/3) #1054 Doctrine\DBAL\Exception\InvalidFieldNameException
An exception occurred while executing a query: Unknown column 'tt_content.CType' in 'where clause'
The solution is to make a select query and then update the database.
And there is also an error with join because there is no join condition between sys_file_reference and tt_content, the join should have been like this:
The wizard MigrateMediaToAssetsForTextMediaCe tries to update the new database field for extension "fluid_styled_content" with this request:
but this can't work, join condition are not supported by doctrine/dbal because the join method is not supported in all db engines for delete or update.
And this result whit a query like this:
and the error:
The solution is to make a select query and then update the database.
And there is also an error with join because there is no join condition between sys_file_reference and tt_content, the join should have been like this:
The text was updated successfully, but these errors were encountered: