@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 18 lines 514 B view raw
1<?php 2 3// See PHI1046. The "spacePHID" column for milestones may have fallen out of 4// sync; correct all existing values. 5 6$table = new PhabricatorProject(); 7$conn = $table->establishConnection('w'); 8$table_name = $table->getTableName(); 9 10foreach (new LiskRawMigrationIterator($conn, $table_name) as $project_row) { 11 queryfx( 12 $conn, 13 'UPDATE %R SET spacePHID = %ns 14 WHERE parentProjectPHID = %s AND milestoneNumber IS NOT NULL', 15 $table, 16 $project_row['spacePHID'], 17 $project_row['phid']); 18}