From 1599bb6a6094775437e296e12b0b3edf5cb7c8c0 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 11 Sep 2013 18:56:57 -0500 Subject: [PATCH] IDEMPIERE-1253 Password is not hidden in the window Storage Provider --- .../oracle/201309111856_IDEMPIERE-1253.sql | 11 +++++++++++ .../postgresql/201309111856_IDEMPIERE-1253.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201309111856_IDEMPIERE-1253.sql create mode 100644 migration/i1.0c-release/postgresql/201309111856_IDEMPIERE-1253.sql diff --git a/migration/i1.0c-release/oracle/201309111856_IDEMPIERE-1253.sql b/migration/i1.0c-release/oracle/201309111856_IDEMPIERE-1253.sql new file mode 100644 index 0000000000..0e441a9d78 --- /dev/null +++ b/migration/i1.0c-release/oracle/201309111856_IDEMPIERE-1253.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Sep 11, 2013 6:56:20 PM COT +-- IDEMPIERE-1253 Password is not hidden in the window Storage Provider +UPDATE AD_Field SET IsEncrypted='Y',Updated=TO_DATE('2013-09-11 18:56:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200867 +; + +SELECT register_migration_script('201309111856_IDEMPIERE-1253.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201309111856_IDEMPIERE-1253.sql b/migration/i1.0c-release/postgresql/201309111856_IDEMPIERE-1253.sql new file mode 100644 index 0000000000..320a1785be --- /dev/null +++ b/migration/i1.0c-release/postgresql/201309111856_IDEMPIERE-1253.sql @@ -0,0 +1,8 @@ +-- Sep 11, 2013 6:56:20 PM COT +-- IDEMPIERE-1253 Password is not hidden in the window Storage Provider +UPDATE AD_Field SET IsEncrypted='Y',Updated=TO_TIMESTAMP('2013-09-11 18:56:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200867 +; + +SELECT register_migration_script('201309111856_IDEMPIERE-1253.sql') FROM dual +; +