From 761547f4304efa35bd9b8dc5d4ebd885ee4c42dc Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 5 Mar 2013 17:34:45 -0500 Subject: [PATCH] IDEMPIERE-347 passwords hash / Vanilla hash passwords broken if use email --- .../i1.0a-release/oracle/201303051733_IDEMPIERE-347.sql | 8 ++++++++ .../postgresql/201303051733_IDEMPIERE-347.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201303051733_IDEMPIERE-347.sql create mode 100644 migration/i1.0a-release/postgresql/201303051733_IDEMPIERE-347.sql diff --git a/migration/i1.0a-release/oracle/201303051733_IDEMPIERE-347.sql b/migration/i1.0a-release/oracle/201303051733_IDEMPIERE-347.sql new file mode 100644 index 0000000000..f5029c91ab --- /dev/null +++ b/migration/i1.0a-release/oracle/201303051733_IDEMPIERE-347.sql @@ -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 +; + diff --git a/migration/i1.0a-release/postgresql/201303051733_IDEMPIERE-347.sql b/migration/i1.0a-release/postgresql/201303051733_IDEMPIERE-347.sql new file mode 100644 index 0000000000..07608a4cce --- /dev/null +++ b/migration/i1.0a-release/postgresql/201303051733_IDEMPIERE-347.sql @@ -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 +; +