Merge "resourceloader: Remove comment about XmlJsCode wrapper"
[lhc/web/wiklou.git] / maintenance / storage / blobs.sql
1 -- Blobs table for external storage
2
3 CREATE TABLE IF NOT EXISTS /*$wgDBprefix*/blobs (
4 blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT,
5 blob_text longblob,
6 PRIMARY KEY (blob_id)
7 ) ENGINE=InnoDB;