IDEMPIERE-347 passwords hash / Vanilla hash passwords broken if use email

This commit is contained in:
Carlos Ruiz 2013-03-05 17:34:45 -05:00
parent 335bf8bc2f
commit 761547f430
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- Mar 5, 2013 5:32:43 PM COT
-- IDEMPIERE-347 passwords hash
UPDATE AD_User SET EMailVerifyDate=NULL, EMail='webservice @ gardenworld.com',Updated=TO_DATE('2013-03-05 17:32:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_User_ID=50001
;
SELECT register_migration_script('201303051733_IDEMPIERE-347.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- Mar 5, 2013 5:32:43 PM COT
-- IDEMPIERE-347 passwords hash
UPDATE AD_User SET EMailVerifyDate=NULL, EMail='webservice @ gardenworld.com',Updated=TO_TIMESTAMP('2013-03-05 17:32:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_User_ID=50001
;
SELECT register_migration_script('201303051733_IDEMPIERE-347.sql') FROM dual
;