Note recent PG changes.
[mediawiki.git] / maintenance / archives / patch-querycacheinfo.sql
blob0e34b3a56b4a141068b0c0505fbf7042e28f00b1
1 CREATE TABLE /*$wgDBprefix*/querycache_info (
3         -- Special page name
4         -- Corresponds to a qc_type value
5         qci_type varchar(32) NOT NULL default '',
7         -- Timestamp of last update
8         qci_timestamp char(14) NOT NULL default '19700101000000',
10         UNIQUE KEY ( qci_type )
12 ) TYPE=InnoDB;