From a55c4a651ea56778e2799ee206be0d5e7610a06a Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 1 Jun 2015 06:56:04 -0700 Subject: [PATCH] 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 --- resources/sql/autopatches/20150503.repositorysymbols.2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/sql/autopatches/20150503.repositorysymbols.2.php b/resources/sql/autopatches/20150503.repositorysymbols.2.php index a3a380dadd..0fc669e86b 100644 --- a/resources/sql/autopatches/20150503.repositorysymbols.2.php +++ b/resources/sql/autopatches/20150503.repositorysymbols.2.php @@ -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) {