1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

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
This commit is contained in:
epriestley 2013-10-19 04:56:17 -07:00
parent 7180199d13
commit 460051c1d8
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1 @@
DROP TABLE IF EXISTS {$NAMESPACE}_maniphest.maniphest_savedquery;

View file

@ -1676,6 +1676,10 @@ final class PhabricatorBuiltinPatchList extends PhabricatorSQLPatchList {
'type' => 'sql',
'name' => $this->getPatchPath('20131015.cpolicy.sql'),
),
'20130915.maniphestqdrop.sql' => array(
'type' => 'sql',
'name' => $this->getPatchPath('20130915.maniphestqdrop.sql'),
),
);
}
}