1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mediawiki_ynh.git synced 2024-09-03 19:46:05 +02:00
mediawiki_ynh/sources/mediawiki/maintenance/archives/patch-pt_title-encoding.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;