includes/installer/DatabaseUpdater.php 1 location
|
@@ 586-591 (lines=6) @@
|
| 583 |
|
]; |
| 584 |
|
} |
| 585 |
|
|
| 586 |
|
foreach ( $wgExtNewIndexes as $fieldRecord ) { |
| 587 |
|
$updates[] = [ |
| 588 |
|
'addIndex', $fieldRecord[0], $fieldRecord[1], |
| 589 |
|
$fieldRecord[2], true |
| 590 |
|
]; |
| 591 |
|
} |
| 592 |
|
|
| 593 |
|
foreach ( $wgExtModifiedFields as $fieldRecord ) { |
| 594 |
|
$updates[] = [ |
includes/installer/PostgresUpdater.php 1 location
|
@@ 468-473 (lines=6) @@
|
| 465 |
|
} |
| 466 |
|
|
| 467 |
|
# Add missing extension indexes |
| 468 |
|
foreach ( $wgExtNewIndexes as $fieldRecord ) { |
| 469 |
|
$updates[] = [ |
| 470 |
|
'addPgExtIndex', $fieldRecord[0], $fieldRecord[1], |
| 471 |
|
$fieldRecord[2] |
| 472 |
|
]; |
| 473 |
|
} |
| 474 |
|
|
| 475 |
|
return $updates; |
| 476 |
|
} |