Merge "SearchResultSet: MW version number should be a string in wfDeprecated call"
[lhc/web/wiklou.git] / maintenance / archives / patch-category.sql
index cb6aee0..97a5690 100644 (file)
@@ -1,14 +1,14 @@
 CREATE TABLE /*$wgDBprefix*/category (
   cat_id int unsigned NOT NULL auto_increment,
 
-  cat_title varbinary(255) NOT NULL,
+  cat_title varchar(255) binary NOT NULL,
 
   cat_pages int signed NOT NULL default 0,
   cat_subcats int signed NOT NULL default 0,
   cat_files int signed NOT NULL default 0,
 
   cat_hidden tinyint(1) unsigned NOT NULL default 0,
-  
+
   PRIMARY KEY (cat_id),
   UNIQUE KEY (cat_title),