Use the cluster and master server info array instead, when possible. Also add initializeTable() method based on the one in addWiki.php. This lets some internals be hidden from that script a bit more. Bug: T231162 Change-Id: I694f12cc800684bcc13351021d9abc9a01bddfe9
7 lines
200 B
SQL
7 lines
200 B
SQL
-- 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;
|