objectcache: avoid using deprecated phpredis::delete() alias
[lhc/web/wiklou.git] / maintenance / archives / patch-langlinks.sql
index 894f89d..5594acd 100644 (file)
@@ -1,12 +1,12 @@
 CREATE TABLE /*$wgDBprefix*/langlinks (
   -- page_id of the referring page
   ll_from int unsigned NOT NULL default '0',
-  
+
   -- Language code of the target
   ll_lang varbinary(20) NOT NULL default '',
 
   -- Title of the target, including namespace
-  ll_title varbinary(255) NOT NULL default '',
+  ll_title varchar(255) binary NOT NULL default '',
 
   UNIQUE KEY (ll_from, ll_lang),
   KEY (ll_lang, ll_title)