Merge "Add constants for schema migration feature flags"
[lhc/web/wiklou.git] / maintenance / archives / patch-searchindex.sql
index fb54dbb..36507a2 100644 (file)
@@ -9,17 +9,17 @@
 DROP TABLE IF EXISTS /*$wgDBprefix*/searchindex;
 CREATE TABLE /*$wgDBprefix*/searchindex (
   -- Key to page_id
-  si_page int(8) unsigned NOT NULL,
-  
+  si_page int unsigned NOT NULL,
+
   -- Munged version of title
   si_title varchar(255) NOT NULL default '',
-  
+
   -- Munged version of body text
-  si_text mediumtext NOT NULL default '',
-  
+  si_text mediumtext NOT NULL,
+
   UNIQUE KEY (si_page)
 
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
 
 -- Copying data into new table...
 INSERT INTO /*$wgDBprefix*/searchindex