summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-querycacheinfo.sql
blob: 0e34b3a56b4a141068b0c0505fbf7042e28f00b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;