Split down patch-comment-table.sql
[lhc/web/wiklou.git] / maintenance / archives / patch-querycache.sql
1 -- Used for caching expensive grouped queries
2
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)
15
16 ) /*$wgDBTableOptions*/;