Merge "Adding ability of jQuery badge to display the number zero if requested."
[lhc/web/wiklou.git] / maintenance / storage / blobs.sql
index 3e72f77..623dd7b 100644 (file)
@@ -1,8 +1,8 @@
 -- Blobs table for external storage
 
 CREATE TABLE /*$wgDBprefix*/blobs (
-       blob_id int(8) NOT NULL default '0' AUTO_INCREMENT,
-       blob_text mediumtext,
+       blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT,
+       blob_text longblob,
        PRIMARY KEY  (blob_id)
-) TYPE=InnoDB;
+) ENGINE=MyISAM MAX_ROWS=100000000 AVG_ROW_LENGTH=100000;