includes/installer/DatabaseUpdater.php 1 location
|
@@ 590-594 (lines=5) @@
|
| 587 |
|
|
| 588 |
|
$updates = []; |
| 589 |
|
|
| 590 |
|
foreach ( $wgExtNewTables as $tableRecord ) { |
| 591 |
|
$updates[] = [ |
| 592 |
|
'addTable', $tableRecord[0], $tableRecord[1], true |
| 593 |
|
]; |
| 594 |
|
} |
| 595 |
|
|
| 596 |
|
foreach ( $wgExtNewFields as $fieldRecord ) { |
| 597 |
|
$updates[] = [ |
includes/installer/PostgresUpdater.php 1 location
|
@@ 455-459 (lines=5) @@
|
| 452 |
|
$updates = []; |
| 453 |
|
|
| 454 |
|
# Add missing extension tables |
| 455 |
|
foreach ( $wgExtNewTables as $tableRecord ) { |
| 456 |
|
$updates[] = [ |
| 457 |
|
'addTable', $tableRecord[0], $tableRecord[1], true |
| 458 |
|
]; |
| 459 |
|
} |
| 460 |
|
|
| 461 |
|
# Add missing extension fields |
| 462 |
|
foreach ( $wgExtPGNewFields as $fieldRecord ) { |