Ensure searchindex table is created as MyISAM
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 19 May 2004 22:04:44 +0000 (22:04 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 19 May 2004 22:04:44 +0000 (22:04 +0000)
maintenance/tables.sql

index d149298..4f256c7 100644 (file)
@@ -216,7 +216,7 @@ CREATE TABLE searchindex (
   si_title varchar(255) NOT NULL default '',
   si_text mediumtext NOT NULL default '',
   UNIQUE KEY (si_page)
-) PACK_KEYS=1;
+) TYPE=MyISAM PACK_KEYS=1;
 
 CREATE TABLE interwiki (
   iw_prefix char(32) NOT NULL,