mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
cab2bba6f2
Summary: Ref T13043. After D18903, this data has migrated to shared infrastructure and has no remaining readers or writers. Just delete it now, since the cost of a mistake here is very small (users need to "Forgot Password?" and pick a new password). Test Plan: Grepped for `passwordHash`, `passwordSalt`, and variations. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13043 Differential Revision: https://secure.phabricator.com/D18904
5 lines
113 B
SQL
5 lines
113 B
SQL
ALTER TABLE {$NAMESPACE}_user.user
|
|
DROP passwordSalt;
|
|
|
|
ALTER TABLE {$NAMESPACE}_user.user
|
|
DROP passwordHash;
|