Copying .cvsignore and hoping to test notification mails...
[mediawiki.git] / maintenance / storage / blobs.sql
blobc0054eb72b8686b4727db99007c834b3711ce200
1 -- Blobs table for external storage
3 CREATE TABLE /*$wgDBprefix*/blobs (
4         blob_id int(8) NOT NULL AUTO_INCREMENT,
5         blob_text mediumtext,
6         PRIMARY KEY  (blob_id)
7 ) ENGINE=InnoDB;