mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
No-op an ancient Paste edge migration which no longer functions after a database rename
Summary: Fixes T13510. This migration currently fails because it tries to affect the "paste" database, but when it runs this database will be named "pastebin". Since the cost of fixing it in place or moving it past the rename migration both seem relatively high (and the cost of throwing it away is plausibly zero) just throw it for now. Test Plan: Looked at file, saw no more code that can execute. Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13510 Differential Revision: https://secure.phabricator.com/D21132
This commit is contained in:
parent
ef1340bd32
commit
3e676bce9e
1 changed files with 5 additions and 15 deletions
|
@ -4,18 +4,8 @@
|
|||
// underlying file data were not written correctly. This restores edges for
|
||||
// any missing pastes.
|
||||
|
||||
$table = new PhabricatorPaste();
|
||||
$edge_type = PhabricatorObjectHasFileEdgeType::EDGECONST;
|
||||
|
||||
foreach (new LiskMigrationIterator($table) as $paste) {
|
||||
$paste_phid = $paste->getPHID();
|
||||
$file_phid = $paste->getFilePHID();
|
||||
|
||||
if (!$file_phid) {
|
||||
continue;
|
||||
}
|
||||
|
||||
id(new PhabricatorEdgeEditor())
|
||||
->addEdge($paste_phid, $edge_type, $file_phid)
|
||||
->save();
|
||||
}
|
||||
// See T13510. The "pastebin" database was later renamed to "paste", which
|
||||
// broke this migration. The migration was removed in 2020 since it seems
|
||||
// plausible that zero installs are impacted (only installs that ran code
|
||||
// from November 2015 and have not upgraded in five years could possibly be
|
||||
// impacted).
|
||||
|
|
Loading…
Reference in a new issue