Last active
August 29, 2015 14:15
-
-
Save maranemil/29c4f26ae69402baa4b3 to your computer and use it in GitHub Desktop.
SugarCRM Reset User Password
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MySQL | |
update users set user_hash = md5('jim') where user_name = 'jim'; | |
// MSSQL | |
update users set user_hash = '5e027396789a18c37aeda616e3d7991b' where user_name = 'jim'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment