@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 14 lines 475 B view raw
1<?php 2 3$table = new PhabricatorUser(); 4$conn = $table->establishConnection('w'); 5$table_name = 'user_oauthinfo'; 6 7foreach (new LiskRawMigrationIterator($conn, $table_name) as $row) { 8 throw new Exception( 9 pht( 10 'This database has ancient OAuth account data and is too old to '. 11 'upgrade directly to a modern software version. Upgrade to a version '. 12 'released between June 2013 and February 2019 first, then upgrade to '. 13 'a modern version.')); 14}