mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
6 lines
253 B
SQL
6 lines
253 B
SQL
-- 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 '';
|