wiki.techinc.nl/maintenance/storage/blobs.sql
Aaron Schulz 176e08484f externalstore: deprecate getLBInfo() dependency in ExternalStoreDB
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
2019-09-10 11:34:52 +00:00

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;