replace TYPE= with ENGINE=, (supported since 4.0, TYPE deprecated since 4.1)
[lhc/web/wiklou.git] / maintenance / storage / blobs.sql
1 -- Blobs table for external storage
2
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;
8