mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
21 lines
524 B
PHP
21 lines
524 B
PHP
|
<?php
|
||
|
|
||
|
$table = new ManiphestTransaction();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
|
||
|
echo "Converting Maniphest CC transactions to modern SUBSCRIBER ".
|
||
|
"transactions...\n";
|
||
|
foreach (new LiskMigrationIterator($table) as $txn) {
|
||
|
// ManiphestTransaction::TYPE_CCS
|
||
|
if ($txn->getTransactionType() == 'ccs') {
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'UPDATE %T SET transactionType = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
PhabricatorTransactions::TYPE_SUBSCRIBERS,
|
||
|
$txn->getID());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|