blob: e3c6c02bc327d0701d993dc028ee063a75636063 (
plain) (
blame)
1
2
3
4
5
6
7
|
-- Blobs table for external storage
CREATE TABLE IF NOT EXISTS /*$wgDBprefix*/blobs (
blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT,
blob_text longblob,
PRIMARY KEY (blob_id)
) ENGINE=InnoDB;
|