summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-pt_title-encoding.sql
blob: b0a2393208a7599b30c0ffe432cd21951d844c6e (plain)
1
2
3
4
5
-- 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;