summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-searchindex.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-searchindex.sql')
-rw-r--r--maintenance/archives/patch-searchindex.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/maintenance/archives/patch-searchindex.sql b/maintenance/archives/patch-searchindex.sql
index 9b635a8f..36507a2b 100644
--- a/maintenance/archives/patch-searchindex.sql
+++ b/maintenance/archives/patch-searchindex.sql
@@ -10,13 +10,13 @@ DROP TABLE IF EXISTS /*$wgDBprefix*/searchindex;
CREATE TABLE /*$wgDBprefix*/searchindex (
-- Key to page_id
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,
-
+
UNIQUE KEY (si_page)
) ENGINE=MyISAM;