added /*$wgDBprefix*/ in various places, to support upgrading from old prefixed datab...
[lhc/web/wiklou.git] / maintenance / archives / patch-querycache.sql
1 -- Used for caching expensive grouped queries
2
3 CREATE TABLE /*$wgDBprefix*/querycache (
4 qc_type char(32) NOT NULL,
5 qc_value int(5) unsigned NOT NULL default '0',
6 qc_namespace tinyint(2) unsigned NOT NULL default '0',
7 qc_title char(255) binary NOT NULL default '',
8 KEY (qc_type,qc_value)
9 );