mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Add a missing migration for transaction actors
Summary: Add a missing migration which should have been included in D9982. Harbormaster and Herald PHIDs are used as actors in some transactions. Test Plan: Ran `./bin/storage upgrade`. Saw a transaction render correctly as "Herald assigned this task to alincoln" instead of "Unknown Object (Application) assigned this task to alincoln". Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10028
This commit is contained in:
parent
86c399b657
commit
e0a7d47e0d
1 changed files with 13 additions and 0 deletions
13
resources/sql/autopatches/20140723.apprenamexaction.sql
Normal file
13
resources/sql/autopatches/20140723.apprenamexaction.sql
Normal file
|
@ -0,0 +1,13 @@
|
|||
UPDATE {$NAMESPACE}_differential.differential_transaction
|
||||
SET authorPHID = 'PHID-APPS-PhabricatorHeraldApplication'
|
||||
WHERE authorPHID = 'PHID-APPS-PhabricatorApplicationHerald';
|
||||
UPDATE {$NAMESPACE}_maniphest.maniphest_transaction
|
||||
SET authorPHID = 'PHID-APPS-PhabricatorHeraldApplication'
|
||||
WHERE authorPHID = 'PHID-APPS-PhabricatorApplicationHerald';
|
||||
UPDATE {$NAMESPACE}_pholio.pholio_transaction
|
||||
SET authorPHID = 'PHID-APPS-PhabricatorHeraldApplication'
|
||||
WHERE authorPHID = 'PHID-APPS-PhabricatorApplicationHerald';
|
||||
|
||||
UPDATE {$NAMESPACE}_differential.differential_transaction
|
||||
SET authorPHID = 'PHID-APPS-PhabricatorHarbormasterApplication'
|
||||
WHERE authorPHID = 'PHID-APPS-PhabricatorApplicationHarbormaster';
|
Loading…
Reference in a new issue