1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00
phorge-phorge/resources/sql/autopatches/20180910.audit.03.status.php

23 lines
442 B
PHP
Raw Normal View History

<?php
$table = new PhabricatorRepositoryCommit();
$conn = $table->establishConnection('w');
$status_map = array(
0 => 'none',
1 => 'needs-audit',
2 => 'concern-raised',
3 => 'partially-audited',
4 => 'audited',
5 => 'needs-verification',
);
foreach ($status_map as $old_status => $new_status) {
queryfx(
$conn,
'UPDATE %R SET auditStatus = %s WHERE auditStatus = %s',
$table,
$new_status,
$old_status);
}