mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Remove "dateCommitted" field from DifferentialRevision
Summary: Ref T2222. This is obsolete and no longer used. We could deduce it from transactions or commits in modern Phabricator if we wanted it. We may implement a more general mechanism for T4434. Test Plan: `grep` Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2222 Differential Revision: https://secure.phabricator.com/D8330
This commit is contained in:
parent
9292433dae
commit
0f0673b9e5
6 changed files with 2 additions and 13 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
ALTER TABLE {$NAMESPACE}_differential.differential_revision
|
||||||
|
DROP dateCommitted;
|
|
@ -60,7 +60,6 @@ final class ConduitAPI_differential_close_Method
|
||||||
$editor->save();
|
$editor->save();
|
||||||
|
|
||||||
$revision->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
$revision->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
||||||
$revision->setDateCommitted(time());
|
|
||||||
$revision->save();
|
$revision->save();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -409,10 +409,6 @@ final class DifferentialCommentEditor extends PhabricatorEditor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$revision->getDateCommitted()) {
|
|
||||||
$revision->setDateCommitted(time());
|
|
||||||
}
|
|
||||||
|
|
||||||
$revision->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
$revision->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -143,11 +143,6 @@ final class DifferentialTransactionEditor
|
||||||
// TODO: Update review status?
|
// TODO: Update review status?
|
||||||
break;
|
break;
|
||||||
case DifferentialAction::ACTION_CLOSE:
|
case DifferentialAction::ACTION_CLOSE:
|
||||||
if (!$object->getDateCommitted()) {
|
|
||||||
// TODO: Can we remove this? It is probably no longer used by
|
|
||||||
// anything anymore. See also T4434.
|
|
||||||
$object->setDateCommitted(time());
|
|
||||||
}
|
|
||||||
$object->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
$object->setStatus(ArcanistDifferentialRevisionStatus::CLOSED);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -20,8 +20,6 @@ final class DifferentialRevision extends DifferentialDAO
|
||||||
protected $authorPHID;
|
protected $authorPHID;
|
||||||
protected $lastReviewerPHID;
|
protected $lastReviewerPHID;
|
||||||
|
|
||||||
protected $dateCommitted;
|
|
||||||
|
|
||||||
protected $lineCount = 0;
|
protected $lineCount = 0;
|
||||||
protected $attached = array();
|
protected $attached = array();
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,6 @@ abstract class PhabricatorRepositoryCommitMessageParserWorker
|
||||||
|
|
||||||
$diff = $this->attachToRevision($revision, $actor_phid);
|
$diff = $this->attachToRevision($revision, $actor_phid);
|
||||||
|
|
||||||
$revision->setDateCommitted($commit->getEpoch());
|
|
||||||
$editor = new DifferentialCommentEditor(
|
$editor = new DifferentialCommentEditor(
|
||||||
$revision,
|
$revision,
|
||||||
DifferentialAction::ACTION_CLOSE);
|
DifferentialAction::ACTION_CLOSE);
|
||||||
|
|
Loading…
Reference in a new issue