bug fix in newcategorymagic: first char was alway the one of the category namespace...
[mediawiki.git] / maintenance / archives / patch-querycache.sql
blobd4a1b8e1e40fe83cf08b7a0d97ed91db74a2d746
1 -- Used for caching expensive grouped queries
3 CREATE TABLE 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 );