Actions
Bug #99808
closedUpgrade to 11.5 fails with database exception "Data too long for column 'lang' at row 1"
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Install Tool
Target version:
-
Start date:
2023-02-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Upgrade from 10.4.34 to 11.5.22
Upgrade Wizard fails with database exception
(1/2) Doctrine\DBAL\Exception\DriverException
An exception occurred while executing 'UPDATE `be_users` SET `lang` = ? WHERE `uid` = ?' with params ["default", 74]: Data too long for column 'lang' at row 1
In fact, field be_users.lang is of VARCHAR but string to be updated ("default") has a length of 7. This does not work at all.
Woraround:
ALTER TABLE xxx.be_users MODIFY COLUMN lang VARCHAR;
where xxx is your database name.
Files
Actions