From: Greg Sabino Mullane Date: Thu, 25 May 2006 00:44:55 +0000 (+0000) Subject: Add querycache_info table. X-Git-Tag: 1.31.0-rc.0~57044 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=81f7f2ac7d6d507762ba7abe24105c65b64e777a;p=lhc%2Fweb%2Fwiklou.git Add querycache_info table. --- diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index a76c249735..9d686e5182 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -350,6 +350,11 @@ CREATE TABLE job ( ); CREATE INDEX job_cmd_namespace_title ON job(job_cmd, job_namespace, job_title); +CREATE TABLE querycache_info ( + qci_type TEXT UNIQUE, + qci_timestamp TIMESTAMPTZ NULL +); + CREATE OR REPLACE FUNCTION add_interwiki (TEXT,INT,CHAR) RETURNS INT LANGUAGE SQL AS $mw$