Index: trunk/phase3/maintenance/postgres/archives/patch-module_deps.sql |
— | — | @@ -0,0 +1,7 @@ |
| 2 | +CREATE TABLE module_deps ( |
| 3 | + md_module TEXT NOT NULL, |
| 4 | + md_skin TEXT NOT NULL, |
| 5 | + md_deps TEXT NOT NULL |
| 6 | +); |
| 7 | + |
| 8 | +CREATE UNIQUE INDEX md_module_skin_idx ON module_deps (md_module, md_skin); |
Property changes on: trunk/phase3/maintenance/postgres/archives/patch-module_deps.sql |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 9 | + native |
Index: trunk/phase3/includes/installer/PostgresUpdater.php |
— | — | @@ -57,6 +57,7 @@ |
58 | 58 | array( 'addTable', 'iwlinks', 'patch-iwlinks.sql' ), |
59 | 59 | array( 'addTable', 'msg_resource', 'patch-msg_resource.sql' ), |
60 | 60 | array( 'addTable', 'msg_resource_links','patch-msg_resource_links.sql' ), |
| 61 | + array( 'addTable', 'module_deps', 'patch-module_deps.sql' ), |
61 | 62 | |
62 | 63 | # Needed before new field |
63 | 64 | array( 'convertArchive2' ), |