mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
12 lines
220 B
PHP
12 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
$table = new HarbormasterBuildPlan();
|
||
|
|
||
|
foreach (new LiskMigrationIterator($table) as $plan) {
|
||
|
PhabricatorSearchWorker::queueDocumentForIndexing(
|
||
|
$plan->getPHID(),
|
||
|
array(
|
||
|
'force' => true,
|
||
|
));
|
||
|
}
|