mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Arcanist Project migration uses wrong column in old table
Summary: Fixes T8375. This column is `repositoryID`, not `repository`. Test Plan: Examined schema. Reviewers: joshuaspence, btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8375 Differential Revision: https://secure.phabricator.com/D13097
This commit is contained in:
parent
c4bcfc85f1
commit
a55c4a651e
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ $projects = queryfx_all(
|
|||
foreach ($projects as $project) {
|
||||
$repo = id(new PhabricatorRepositoryQuery())
|
||||
->setViewer(PhabricatorUser::getOmnipotentUser())
|
||||
->withIDs(array($project['repository']))
|
||||
->withIDs(array($project['repositoryID']))
|
||||
->executeOne();
|
||||
|
||||
if (!$repo) {
|
||||
|
|
Loading…
Reference in a new issue