Split down patch-comment-table.sql
[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) NOT NULL default '',
4 value mediumblob,
5 exptime datetime,
6 UNIQUE KEY (keyname),
7 KEY (exptime)
8
9 ) /*$wgDBTableOptions*/;