Split down patch-comment-table.sql
[lhc/web/wiklou.git] / maintenance / archives / patch-module_deps.sql
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 (
5 -- Module name
6 md_module varbinary(255) NOT NULL,
7 -- Skin name
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);