Project

General

Profile

Bug #100697

Updated by Georg Ringer about 1 year ago

the upgrade wizard "Migrate backend users' selected UI languages to new format." does not work as long as the following change in the database compare is not done 

 <pre> 
 ALTER TABLE `be_users` CHANGE `lang` `lang` VARCHAR(10) DEFAULT 'default' NOT NULL 
 Current value: lang VARCHAR(6) CHARACTER SET latin1 DEFAULT '' NOT NULL COLLATE `latin1_swedish_ci` 
 </pre> 

 error 
 <pre> 
 An exception occurred while executing 'UPDATE `be_users` SET `lang` = ? WHERE `uid` = ?' with params ["default", 1]: Data too long for column 'lang' at row 1 
 </pre> 

 it would be great if the wizard could do the migration or at least checks it

Back