repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Implement extension registration from an extension.json file
[mediawiki.git]
/
maintenance
/
storage
/
blobs.sql
blob
979e68a94e6e19ab7c1041d84771e6c46c5a19a4
1
-- Blobs table for external storage
2
3
CREATE TABLE /*$wgDBprefix*/blobs (
4
blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT,
5
blob_text longblob,
6
PRIMARY KEY (blob_id)
7
) ENGINE=InnoDB;