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