From 7b32da47119c558147426662dffd42410eb7779d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 19 May 2004 22:04:44 +0000 Subject: [PATCH] Ensure searchindex table is created as MyISAM --- maintenance/tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/tables.sql b/maintenance/tables.sql index d149298dbc..4f256c702f 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -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, -- 2.20.1