blob: 3e72f77f33390288abd922c3ec7b08a1d12d7376 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
-- Blobs table for external storage
CREATE TABLE /*$wgDBprefix*/blobs (
blob_id int(8) NOT NULL default '0' AUTO_INCREMENT,
blob_text mediumtext,
PRIMARY KEY (blob_id)
) TYPE=InnoDB;
|