Don't unconditionally run patch-editsummary-length.sql
[lhc/web/wiklou.git] / maintenance / archives / patch-parsercache.sql
index 533a206..5fe241c 100644 (file)
@@ -1,9 +1,9 @@
 --
--- parsercache table, for cacheing complete parsed articles 
+-- parsercache table, for cacheing complete parsed articles
 -- before they are imbedded in the skin.
 --
 
-CREATE TABLE parsercache (
+CREATE TABLE /*$wgDBprefix*/parsercache (
   pc_pageid INT(11) NOT NULL,
   pc_title VARCHAR(255) NOT NULL,
   pc_prefhash CHAR(32) NOT NULL,
@@ -12,4 +12,4 @@ CREATE TABLE parsercache (
   PRIMARY KEY (pc_pageid, pc_prefhash),
   KEY(pc_title),
   KEY(pc_expire)
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;