Split down patch-comment-table.sql
[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 '';