(bug 22750) <logitem> is at wrong location in export.xsd
[mediawiki.git] / maintenance / archives / patch-querycache.sql
blobe6da79cc28060475548717da95809d1d15418d31
1 -- Used for caching expensive grouped queries
3 CREATE TABLE /*$wgDBprefix*/querycache (
4   -- A key name, generally the base name of of the special page.
5   qc_type varbinary(32) NOT NULL,
6   
7   -- Some sort of stored value. Sizes, counts...
8   qc_value int unsigned NOT NULL default '0',
9   
10   -- Target namespace+title
11   qc_namespace int NOT NULL default '0',
12   qc_title varchar(255) binary NOT NULL default '',
13   
14   KEY (qc_type,qc_value)
16 ) /*$wgDBTableOptions*/;