repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git]
/
resources
/
sql
/
autopatches
/
20140218.passwords.2.prefix.sql
blob
175f81cd93637b411d1b9a21f3472e6069ad4b16
1
/* Mark all existing password hashes as "Iterated MD5". */
2
3
UPDATE {$NAMESPACE}_user.user
4
SET passwordHash = CONCAT('md5:', passwordHash)
5
WHERE LENGTH(passwordHash) > 0;