From 3743479756c9086366335d6bdea6c02907dbadf8 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 21 Feb 2013 12:21:33 -0800 Subject: [PATCH] Changed blob table to use InnoDB. Change-Id: Ied2f1bf7577e6afe1d09222ada6be54cedeec574 --- maintenance/storage/blobs.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/maintenance/storage/blobs.sql b/maintenance/storage/blobs.sql index 623dd7bfd7..979e68a94e 100644 --- a/maintenance/storage/blobs.sql +++ b/maintenance/storage/blobs.sql @@ -4,5 +4,4 @@ CREATE TABLE /*$wgDBprefix*/blobs ( blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT, blob_text longblob, PRIMARY KEY (blob_id) -) ENGINE=MyISAM MAX_ROWS=100000000 AVG_ROW_LENGTH=100000; - +) ENGINE=InnoDB; -- 2.20.1