summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-querycacheinfo.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-querycacheinfo.sql')
-rw-r--r--maintenance/archives/patch-querycacheinfo.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/maintenance/archives/patch-querycacheinfo.sql b/maintenance/archives/patch-querycacheinfo.sql
new file mode 100644
index 00000000..0e34b3a5
--- /dev/null
+++ b/maintenance/archives/patch-querycacheinfo.sql
@@ -0,0 +1,12 @@
+CREATE TABLE /*$wgDBprefix*/querycache_info (
+
+ -- Special page name
+ -- Corresponds to a qc_type value
+ qci_type varchar(32) NOT NULL default '',
+
+ -- Timestamp of last update
+ qci_timestamp char(14) NOT NULL default '19700101000000',
+
+ UNIQUE KEY ( qci_type )
+
+) TYPE=InnoDB;