1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

Upstream a patch to cover a migration issue

Summary: Fixes T4928. I'm not sure how this column was missing, but this patch can't hurt.

Test Plan: Reasoned about behavior.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T4928

Differential Revision: https://secure.phabricator.com/D8967
This commit is contained in:
epriestley 2014-05-04 10:48:25 -07:00
parent ca6b821cda
commit 7fb89686d4

View file

@ -33,7 +33,7 @@ foreach ($rows as $row) {
$xaction_type = $row['transactionType']; $xaction_type = $row['transactionType'];
$xaction_old = $row['oldValue']; $xaction_old = $row['oldValue'];
$xaction_new = $row['newValue']; $xaction_new = $row['newValue'];
$xaction_source = $row['contentSource']; $xaction_source = idx($row, 'contentSource', '');
$xaction_meta = $row['metadata']; $xaction_meta = $row['metadata'];
// Convert "aux" (auxiliary field) transactions to proper CustomField // Convert "aux" (auxiliary field) transactions to proper CustomField