(bug 16645) Making the pl_namespace, tl_namespace and il_to indices UNIQUE, just...
[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 varchar(255) binary NOT NULL default '';