mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8bf24f53b3
Summary: Ref T1191. This destroys surplus columns: - Pholio's transaction comments have a `mockID` column, but this is not used. The `imageID` column is used instead. - Phragment has an unused `description` column. - Releeph has an unused `summary` column. Test Plan: - Grepped for usage of these columns. - Checked that these exist in production, too. - Ran upgrades. - Added Pholio inline comments. - Saw fewer warnings. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley, hach-que Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10591
2 lines
81 B
SQL
2 lines
81 B
SQL
ALTER TABLE {$NAMESPACE}_pholio.pholio_transaction_comment
|
|
DROP COLUMN mockID;
|