mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
5 lines
301 B
SQL
5 lines
301 B
SQL
-- pt_title was accidentally left with the wrong collation.
|
|
-- This might cause failures with JOINs, and could protect the wrong pages
|
|
-- with different case variants or unrelated UTF-8 chars.
|
|
ALTER TABLE /*$wgDBprefix*/protected_titles
|
|
CHANGE COLUMN pt_title pt_title varchar(255) binary NOT NULL;
|