Don't load all languages just to check whether message is known.
[mediawiki.git] / maintenance / archives / patch-querycacheinfo.sql
blob7ad2bca61a8263125119756e9566c892a4ade7b7
1 CREATE TABLE /*$wgDBprefix*/querycache_info (
3         -- Special page name
4         -- Corresponds to a qc_type value
5         qci_type varbinary(32) NOT NULL default '',
7         -- Timestamp of last update
8         qci_timestamp binary(14) NOT NULL default '19700101000000',
10         UNIQUE KEY ( qci_type )
12 ) /*$wgDBTableOptions*/;