Merge "Fix missingcommenttext message to be more useful in different page layouts"
[lhc/web/wiklou.git] / maintenance / archives / patch-searchindex.sql
index 0e7f395..36507a2 100644 (file)
@@ -9,14 +9,14 @@
 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)
 
 ) ENGINE=MyISAM;