Last modified: 2007-06-05 15:03:35 UTC
The database patch "patch-rc_deleted.sql" has an incorrect data type which causes update.php to fail. I have a patch to fix it, but no commit access, so I'll just upload it here.
Created attachment 3377 [details] Fix incorrect data type in patch-rc_deleted
"BLOB" is a valid column data type, although it can't have a default value in MySQL strict mode.
Does it need to be a BLOB? If so, we can just remove the default.
rc_params is defined exactly the same as log_params. Odd.
(In reply to comment #4) > rc_params is defined exactly the same as log_params. Odd. MySQL won't accept a default value for a BLOB column when operating in strict mode; patches aren't split up to cope with the three schema variants we offer.
Fixed in r22760.