1 CREATE TABLE /*$wgDBprefix*/querycache_info (
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*/;