From be82eec408eca2aca6bef400cefdfa0f3c2ed56e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 17 Jul 2013 13:15:21 -0500 Subject: [PATCH] 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 --- .../i1.0c-release/oracle/201307171313_IDEMPIERE-347.sql | 8 ++++++++ .../postgresql/201307171313_IDEMPIERE-347.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201307171313_IDEMPIERE-347.sql create mode 100644 migration/i1.0c-release/postgresql/201307171313_IDEMPIERE-347.sql diff --git a/migration/i1.0c-release/oracle/201307171313_IDEMPIERE-347.sql b/migration/i1.0c-release/oracle/201307171313_IDEMPIERE-347.sql new file mode 100644 index 0000000000..d84027ca70 --- /dev/null +++ b/migration/i1.0c-release/oracle/201307171313_IDEMPIERE-347.sql @@ -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 +; + diff --git a/migration/i1.0c-release/postgresql/201307171313_IDEMPIERE-347.sql b/migration/i1.0c-release/postgresql/201307171313_IDEMPIERE-347.sql new file mode 100644 index 0000000000..7943dcb69d --- /dev/null +++ b/migration/i1.0c-release/postgresql/201307171313_IDEMPIERE-347.sql @@ -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 +; +