X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Farchives%2Fpatch-querycache.sql;h=8e1a5188a0b5359de6c291f0175900f0ae8086a6;hb=46deecce89b76e2d45e61f5f696928bb859ae324;hp=81f43c653dac995fc96f719ffc0c00368a434772;hpb=8b70c17d246051dca4ae10eaa2195ebeab66ea68;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/archives/patch-querycache.sql b/maintenance/archives/patch-querycache.sql index 81f43c653d..8e1a5188a0 100644 --- a/maintenance/archives/patch-querycache.sql +++ b/maintenance/archives/patch-querycache.sql @@ -3,14 +3,14 @@ CREATE TABLE /*$wgDBprefix*/querycache ( -- A key name, generally the base name of of the special page. qc_type varbinary(32) NOT NULL, - + -- Some sort of stored value. Sizes, counts... qc_value int unsigned NOT NULL default '0', - + -- Target namespace+title qc_namespace int NOT NULL default '0', - qc_title varbinary(255) NOT NULL default '', - + qc_title varchar(255) binary NOT NULL default '', + KEY (qc_type,qc_value) ) /*$wgDBTableOptions*/;