r72351 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r72350‎ | r72351 | r72352 >
Date:04:14, 4 September 2010
Author:overlordq
Status:ok
Tags:
Comment:
Followup to r72349, PG table def + updater for module_deps
Modified paths:
  • /trunk/phase3/includes/installer/PostgresUpdater.php (modified) (history)
  • /trunk/phase3/maintenance/postgres/archives/patch-module_deps.sql (added) (history)

Diff [purge]

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
19 + native
Index: trunk/phase3/includes/installer/PostgresUpdater.php
@@ -57,6 +57,7 @@
5858 array( 'addTable', 'iwlinks', 'patch-iwlinks.sql' ),
5959 array( 'addTable', 'msg_resource', 'patch-msg_resource.sql' ),
6060 array( 'addTable', 'msg_resource_links','patch-msg_resource_links.sql' ),
 61+ array( 'addTable', 'module_deps', 'patch-module_deps.sql' ),
6162
6263 # Needed before new field
6364 array( 'convertArchive2' ),

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r72349Merging resourceloader branch into trunk. Full documentation is at http://www...catrope04:00, 4 September 2010

Status & tagging log