(bug 769) OutputPage::permissionRequired() should suggest groups with the needed...
[mediawiki.git] / maintenance / archives / patch-parsercache.sql
blob854e6c57ce20eeb39b32850ff01aaa0be7cc93f1
1 --
2 -- parsercache table, for cacheing complete parsed articles 
3 -- before they are imbedded in the skin.
4 --
6 CREATE TABLE /*$wgDBprefix*/parsercache (
7   pc_pageid INT(11) NOT NULL,
8   pc_title VARCHAR(255) NOT NULL,
9   pc_prefhash CHAR(32) NOT NULL,
10   pc_expire DATETIME NOT NULL,
11   pc_data MEDIUMBLOB NOT NULL,
12   PRIMARY KEY (pc_pageid, pc_prefhash),
13   KEY(pc_title),
14   KEY(pc_expire)
15 ) TYPE=InnoDB;