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.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/archives/patch-querycacheinfo.sql b/maintenance/archives/patch-querycacheinfo.sql
index d90189e2..7ad2bca6 100644
--- a/maintenance/archives/patch-querycacheinfo.sql
+++ b/maintenance/archives/patch-querycacheinfo.sql
@@ -2,10 +2,10 @@ CREATE TABLE /*$wgDBprefix*/querycache_info (
-- Special page name
-- Corresponds to a qc_type value
- qci_type varchar(32) NOT NULL default '',
+ qci_type varbinary(32) NOT NULL default '',
-- Timestamp of last update
- qci_timestamp char(14) NOT NULL default '19700101000000',
+ qci_timestamp binary(14) NOT NULL default '19700101000000',
UNIQUE KEY ( qci_type )