@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.

Drop `maniphest_savedquery` table

Summary: This data was migrated by D6977 and is now obsolete. I'll hold this patch for a week or two in case we get reports of migration errors.

Test Plan: Ran storage upgrade, saw the table vanish. Grepped for references to the table.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Differential Revision: https://secure.phabricator.com/D6997

+5
+1
resources/sql/patches/20130915.maniphestqdrop.sql
··· 1 + DROP TABLE IF EXISTS {$NAMESPACE}_maniphest.maniphest_savedquery;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1676 1676 'type' => 'sql', 1677 1677 'name' => $this->getPatchPath('20131015.cpolicy.sql'), 1678 1678 ), 1679 + '20130915.maniphestqdrop.sql' => array( 1680 + 'type' => 'sql', 1681 + 'name' => $this->getPatchPath('20130915.maniphestqdrop.sql'), 1682 + ), 1679 1683 ); 1680 1684 } 1681 1685 }