War on varchar. Changed all occurrences of varchar(N) and varchar(N) binary to varbin...
[lhc/web/wiklou.git] / maintenance / archives / patch-logging-title.sql
1 -- 1.4 betas were missing the 'binary' marker from logging.log_title,
2 -- which causes a collation mismatch error on joins in MySQL 4.1.
3
4 ALTER TABLE /*$wgDBprefix*/logging
5 CHANGE COLUMN log_title
6 log_title varbinary(255) NOT NULL default '';