1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mediawiki_ynh.git synced 2024-09-03 19:46:05 +02:00
mediawiki_ynh/sources/mediawiki/maintenance/archives/patch-objectcache.sql

9 lines
255 B
SQL

-- For a few generic cache operations if not using Memcached
CREATE TABLE /*$wgDBprefix*/objectcache (
keyname varbinary(255) NOT NULL default '',
value mediumblob,
exptime datetime,
UNIQUE KEY (keyname),
KEY (exptime)
) /*$wgDBTableOptions*/;