@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 23 lines 479 B view raw
1<?php 2 3echo pht('Giving countdowns PHIDs'); 4$table = new PhabricatorCountdown(); 5$table->openTransaction(); 6 7foreach (new LiskMigrationIterator($table) as $countdown) { 8 if ($countdown->getPHID()) { 9 continue; 10 } 11 12 echo '.'; 13 14 queryfx( 15 $countdown->establishConnection('w'), 16 'UPDATE %T SET phid = %s WHERE id = %d', 17 $countdown->getTableName(), 18 $countdown->generatePHID(), 19 $countdown->getID()); 20} 21 22$table->saveTransaction(); 23echo "\n".pht('Done.')."\n";