mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
12 lines
292 B
SQL
12 lines
292 B
SQL
CREATE TABLE /*$wgDBprefix*/querycache_info (
|
|
|
|
-- Special page name
|
|
-- Corresponds to a qc_type value
|
|
qci_type varbinary(32) NOT NULL default '',
|
|
|
|
-- Timestamp of last update
|
|
qci_timestamp binary(14) NOT NULL default '19700101000000',
|
|
|
|
UNIQUE KEY ( qci_type )
|
|
|
|
) /*$wgDBTableOptions*/;
|