@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
resources/sql/autopatches/20150503.repositorysymbols.2.php
··· 11 11 foreach ($projects as $project) { 12 12 $repo = id(new PhabricatorRepositoryQuery()) 13 13 ->setViewer(PhabricatorUser::getOmnipotentUser()) 14 - ->withIDs(array($project['repository'])) 14 + ->withIDs(array($project['repositoryID'])) 15 15 ->executeOne(); 16 16 17 17 if (!$repo) {