wiki.techinc.nl/maintenance/archives/patch-objectcache.sql
Brion Vibber a21727d395 * (bug 11450) Fix creation of objectcache table on upgrade
patch-objectcache.sql had an extra 'binary' specifier which wasn't needed and causes the table creation to fail. Whoops! :)
2007-09-25 15:08:50 +00:00

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*/;