From: Brion Vibber Date: Fri, 25 Feb 2005 21:35:00 +0000 (+0000) Subject: Apparently forgot to check this in. X-Git-Tag: 1.5.0alpha1~693 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=7e593653656fac85623e23f12b97ca4472bf6e28;p=lhc%2Fweb%2Fwiklou.git Apparently forgot to check this in. --- diff --git a/maintenance/archives/patch-logging-title.sql b/maintenance/archives/patch-logging-title.sql new file mode 100644 index 0000000000..c5da0dc046 --- /dev/null +++ b/maintenance/archives/patch-logging-title.sql @@ -0,0 +1,6 @@ +-- 1.4 betas were missing the 'binary' marker from logging.log_title, +-- which causes a collation mismatch error on joins in MySQL 4.1. + +ALTER TABLE /*$wgDBprefix*/logging + CHANGE COLUMN log_title + log_title varchar(255) binary NOT NULL default '';