2006-04-17 05:20:38 +00:00
|
|
|
CREATE TABLE /*$wgDBprefix*/querycache_info (
|
|
|
|
|
|
|
|
|
|
-- Special page name
|
|
|
|
|
-- Corresponds to a qc_type value
|
2007-06-22 20:09:59 +00:00
|
|
|
qci_type varbinary(32) NOT NULL default '',
|
2006-04-17 05:20:38 +00:00
|
|
|
|
|
|
|
|
-- Timestamp of last update
|
2007-06-22 20:09:59 +00:00
|
|
|
qci_timestamp binary(14) NOT NULL default '19700101000000',
|
2006-04-17 05:20:38 +00:00
|
|
|
|
|
|
|
|
UNIQUE KEY ( qci_type )
|
|
|
|
|
|
2007-04-22 14:04:06 +00:00
|
|
|
) /*$wgDBTableOptions*/;
|