mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
5778627e41
Summary: Ref T4443. Provide more space; remove the hack-glue. Test Plan: Logged out, logged in, inspected database. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T4443 Differential Revision: https://secure.phabricator.com/D8269
5 lines
174 B
SQL
5 lines
174 B
SQL
/* Mark all existing password hashes as "Iterated MD5". */
|
|
|
|
UPDATE {$NAMESPACE}_user.user
|
|
SET passwordHash = CONCAT('md5:', passwordHash)
|
|
WHERE LENGTH(passwordHash) > 0;
|