Skip to content

Instantly share code, notes, and snippets.

@maranemil
Last active August 29, 2015 14:15
Show Gist options
  • Save maranemil/29c4f26ae69402baa4b3 to your computer and use it in GitHub Desktop.
Save maranemil/29c4f26ae69402baa4b3 to your computer and use it in GitHub Desktop.
SugarCRM Reset User Password
// 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