* PostgresField now reports column default value * DatabasePostgres::indexAttributes reports index details * Perform schema update in one transaction With this change we can sucessfully update MediaWiki 1.7.3 schema to trunk^Wmaster Patch set 2: Rebased against master. PLEASE check carefully to make sure I got those conflicted files right. Conflicts: includes/db/DatabasePostgres.php includes/installer/PostgresUpdater.php Change-Id: Iebb6855e8f6f44470bbb1dc5ab9ac1abb513adfe
7 lines
179 B
SQL
7 lines
179 B
SQL
CREATE TABLE module_deps (
|
|
md_module TEXT NOT NULL,
|
|
md_skin TEXT NOT NULL,
|
|
md_deps TEXT NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX md_module_skin ON module_deps (md_module, md_skin);
|