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

Removed psth column from herald transcript

Summary: Added patch file to remove psth column in herald transcript tabe

Test Plan: Verified that column was removed with ./bin/storage upgrade

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2425

Differential Revision: https://secure.phabricator.com/D4672
This commit is contained in:
Lauri-Henrik Jalonen 2013-01-26 15:22:10 -08:00 committed by epriestley
parent 1670f5841d
commit 5cb8787d91
2 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,3 @@
ALTER TABLE `{$NAMESPACE}_herald`.`herald_transcript`
DROP `psth`;

View file

@ -1093,6 +1093,10 @@ final class PhabricatorBuiltinPatchList extends PhabricatorSQLPatchList {
'type' => 'sql', 'type' => 'sql',
'name' => $this->getPatchPath('20130111.conpherence.sql'), 'name' => $this->getPatchPath('20130111.conpherence.sql'),
), ),
'20130127.altheraldtranscript.sql' => array(
'type' => 'sql',
'name' => $this->getPatchPath('20130127.altheraldtranscript.sql'),
),
); );
} }