Merge "Re add wpScrolltop id in EditPage"
[lhc/web/wiklou.git] / maintenance / archives / patch-querycacheinfo.sql
1 CREATE TABLE /*$wgDBprefix*/querycache_info (
2
3 -- Special page name
4 -- Corresponds to a qc_type value
5 qci_type varbinary(32) NOT NULL default '',
6
7 -- Timestamp of last update
8 qci_timestamp binary(14) NOT NULL default '19700101000000',
9
10 UNIQUE KEY ( qci_type )
11
12 ) /*$wgDBTableOptions*/;