includes/installer/DatabaseUpdater.php 1 location
|
@@ 603-608 (lines=6) @@
|
| 600 |
|
]; |
| 601 |
|
} |
| 602 |
|
|
| 603 |
|
foreach ( $wgExtNewIndexes as $fieldRecord ) { |
| 604 |
|
$updates[] = [ |
| 605 |
|
'addIndex', $fieldRecord[0], $fieldRecord[1], |
| 606 |
|
$fieldRecord[2], true |
| 607 |
|
]; |
| 608 |
|
} |
| 609 |
|
|
| 610 |
|
foreach ( $wgExtModifiedFields as $fieldRecord ) { |
| 611 |
|
$updates[] = [ |
includes/installer/PostgresUpdater.php 1 location
|
@@ 478-483 (lines=6) @@
|
| 475 |
|
} |
| 476 |
|
|
| 477 |
|
# Add missing extension indexes |
| 478 |
|
foreach ( $wgExtNewIndexes as $fieldRecord ) { |
| 479 |
|
$updates[] = [ |
| 480 |
|
'addPgExtIndex', $fieldRecord[0], $fieldRecord[1], |
| 481 |
|
$fieldRecord[2] |
| 482 |
|
]; |
| 483 |
|
} |
| 484 |
|
|
| 485 |
|
return $updates; |
| 486 |
|
} |