Merge "rdbms: set cpPosIndex to null in ChronologyProtector::shutdown on failure"
[lhc/web/wiklou.git] / maintenance / postgres / archives / patch-module_deps.sql
1 CREATE TABLE module_deps (
2 md_module TEXT NOT NULL,
3 md_skin TEXT NOT NULL,
4 md_deps TEXT NOT NULL
5 );
6
7 CREATE UNIQUE INDEX md_module_skin ON module_deps (md_module, md_skin);