@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// Prior to this patch, we issued sessions "web-1", "web-2", etc., up to some
4// limit. This collapses all the "web-X" sessions into "web" sessions.
5
6$session_table = new PhabricatorAuthSession();
7$conn_w = $session_table->establishConnection('w');
8
9foreach (new LiskMigrationIterator($session_table) as $session) {
10 $id = $session->getID();
11
12 echo pht('Migrating session %d...', $id)."\n";
13 $old_type = $session->getType();
14 $new_type = preg_replace('/-.*$/', '', $old_type);
15
16 if ($old_type !== $new_type) {
17 queryfx(
18 $conn_w,
19 'UPDATE %T SET type = %s WHERE id = %d',
20 $session_table->getTableName(),
21 $new_type,
22 $id);
23 }
24}
25
26echo pht('Done.')."\n";