X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Farchives%2Fpatch-querycache.sql;h=8e1a5188a0b5359de6c291f0175900f0ae8086a6;hb=1d7a1bf8bddf0908e4f572c82268733f63126a13;hp=e6da79cc28060475548717da95809d1d15418d31;hpb=1842f903c2684354e6dd4e164c601383b0c88859;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/archives/patch-querycache.sql b/maintenance/archives/patch-querycache.sql index e6da79cc28..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 varchar(255) binary NOT NULL default '', - + KEY (qc_type,qc_value) ) /*$wgDBTableOptions*/;