Merge "Drop unused patch-parsercache.sql"
This commit is contained in:
commit
5de76409f6
1 changed files with 0 additions and 15 deletions
|
|
@ -1,15 +0,0 @@
|
|||
--
|
||||
-- parsercache table, for caching completely parsed articles
|
||||
-- before they are embedded in the skin.
|
||||
--
|
||||
|
||||
CREATE TABLE /*$wgDBprefix*/parsercache (
|
||||
pc_pageid INT(11) NOT NULL,
|
||||
pc_title VARCHAR(255) NOT NULL,
|
||||
pc_prefhash CHAR(32) NOT NULL,
|
||||
pc_expire DATETIME NOT NULL,
|
||||
pc_data MEDIUMBLOB NOT NULL,
|
||||
PRIMARY KEY (pc_pageid, pc_prefhash),
|
||||
KEY(pc_title),
|
||||
KEY(pc_expire)
|
||||
) /*$wgDBTableOptions*/;
|
||||
Loading…
Reference in a new issue