1 -- Table for tracking which local files a module depends on that aren't
2 -- registered directly.
3 -- Currently only used for tracking images that CSS depends on
4 CREATE TABLE /*_*/module_deps (
6 md_module varbinary(255) NOT NULL,
8 md_skin varbinary(32) NOT NULL,
9 -- JSON blob with file dependencies
10 md_deps mediumblob NOT NULL
11 ) /*$wgDBTableOptions*/;
12 CREATE UNIQUE INDEX /*i*/md_module_skin ON /*_*/module_deps (md_module, md_skin);