223a11c9511b1434a9cb2e7212e43a6413fcdeb5
[lhc/web/wiklou.git] / maintenance / archives / patch-objectcache.sql
1 -- For a few generic cache operations if not using Memcached
2 CREATE TABLE /*$wgDBprefix*/objectcache (
3 keyname varbinary(255) binary not null default '',
4 value mediumblob,
5 exptime datetime,
6 unique key (keyname),
7 key (exptime)
8
9 ) /*$wgDBTableOptions*/;