attempt to fix ini_set error by using set_include_path Patch by robertoz
[mediawiki.git] / maintenance / storage / blobs.sql
blob5782ac47b75f2dd6742d4bece17e5ae374436f15
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 ) TYPE=InnoDB;