IDEMPIERE-347 Password for user System must be changed via Reset Password window - as a security measure, and also because hashed password corrupt the password if changed from window

This commit is contained in:
Carlos Ruiz 2013-07-17 13:15:21 -05:00
parent 7ee9b8ddc4
commit be82eec408
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- Jul 17, 2013 1:10:17 PM COT
-- IDEMPIERE-347 passwords hash
UPDATE AD_Column SET ReadOnlyLogic='@AD_User_ID@=0',Updated=TO_DATE('2013-07-17 13:10:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=417
;
SELECT register_migration_script('201307171313_IDEMPIERE-347.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- Jul 17, 2013 1:10:17 PM COT
-- IDEMPIERE-347 passwords hash
UPDATE AD_Column SET ReadOnlyLogic='@AD_User_ID@=0',Updated=TO_TIMESTAMP('2013-07-17 13:10:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=417
;
SELECT register_migration_script('201307171313_IDEMPIERE-347.sql') FROM dual
;