From: Domas Mituzas Date: Wed, 21 Mar 2007 21:40:07 +0000 (+0000) Subject: use MyISAM by default instead of InnoDB X-Git-Tag: 1.31.0-rc.0~53649 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=2174bb072979bf75aa30fd8807a97882096a059a;p=lhc%2Fweb%2Fwiklou.git use MyISAM by default instead of InnoDB --- diff --git a/maintenance/storage/blobs.sql b/maintenance/storage/blobs.sql index 5782ac47b7..b50865c657 100644 --- a/maintenance/storage/blobs.sql +++ b/maintenance/storage/blobs.sql @@ -1,8 +1,8 @@ -- Blobs table for external storage CREATE TABLE /*$wgDBprefix*/blobs ( - blob_id int(8) NOT NULL AUTO_INCREMENT, - blob_text mediumtext, + blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT, + blob_text longblob, PRIMARY KEY (blob_id) -) TYPE=InnoDB; +) TYPE=MyISAM MAX_ROWS=1000000 AVG_ROW_LENGTH=1000000;