1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02: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:
epriestley 2015-06-01 06:56:04 -07:00
parent c4bcfc85f1
commit a55c4a651e

View file

@ -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) {