includes/installer/DatabaseUpdater.php 1 location
|
@@ 573-577 (lines=5) @@
|
| 570 |
|
|
| 571 |
|
$updates = []; |
| 572 |
|
|
| 573 |
|
foreach ( $wgExtNewTables as $tableRecord ) { |
| 574 |
|
$updates[] = [ |
| 575 |
|
'addTable', $tableRecord[0], $tableRecord[1], true |
| 576 |
|
]; |
| 577 |
|
} |
| 578 |
|
|
| 579 |
|
foreach ( $wgExtNewFields as $fieldRecord ) { |
| 580 |
|
$updates[] = [ |
includes/installer/PostgresUpdater.php 1 location
|
@@ 445-449 (lines=5) @@
|
| 442 |
|
$updates = []; |
| 443 |
|
|
| 444 |
|
# Add missing extension tables |
| 445 |
|
foreach ( $wgExtNewTables as $tableRecord ) { |
| 446 |
|
$updates[] = [ |
| 447 |
|
'addTable', $tableRecord[0], $tableRecord[1], true |
| 448 |
|
]; |
| 449 |
|
} |
| 450 |
|
|
| 451 |
|
# Add missing extension fields |
| 452 |
|
foreach ( $wgExtPGNewFields as $fieldRecord ) { |