Fix bug in r83814 reported on IRC: categorymembers did not set an ORDER BY when cmcon...
[mediawiki.git] / maintenance / storage / blobs.sql
blob623dd7bfd74efb21fde7b60cea107f437e4cf495
1 -- Blobs table for external storage
3 CREATE TABLE /*$wgDBprefix*/blobs (
4         blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT,
5         blob_text longblob,
6         PRIMARY KEY  (blob_id)
7 ) ENGINE=MyISAM MAX_ROWS=100000000 AVG_ROW_LENGTH=100000;