From 560331bd36d4dfc5bb1cd10f4f4a7cd488f4ccec Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 10 Jul 2007 05:04:30 +0000 Subject: [PATCH] Bug fix [ 1722235 ] Encryption for password wrongly managed defining columns non encrypted by default as discussed here [ 1722235 ] ENCRYPTION FOR PASSWORD wrongly MANAGED https://sourceforge.net/tracker/?func=detail&atid=879332&aid=1722235&group_id=176962 --- .../320-trunk/017_update_non_encrypted.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 migration/320-trunk/017_update_non_encrypted.sql diff --git a/migration/320-trunk/017_update_non_encrypted.sql b/migration/320-trunk/017_update_non_encrypted.sql new file mode 100644 index 0000000000..af3e589ccb --- /dev/null +++ b/migration/320-trunk/017_update_non_encrypted.sql @@ -0,0 +1,17 @@ +-- Please review before apply +-- if you have any of this columns REALLY encrypted you must not apply this patch: +-- AD_USER.EMailUserPW +-- AD_USER.Password +-- C_PAYMENTPROCESSOR.Password +-- C_PAYMENTPROCESSOR.ProxyPassword + +-- defining columns non encrypted by default as discussed here +-- [ 1722235 ] ENCRYPTION FOR PASSWORD wrongly MANAGED +-- https://sourceforge.net/tracker/?func=detail&atid=879332&aid=1722235&group_id=176962 + +UPDATE AD_COLUMN + SET isencrypted = 'N', + updated = TO_DATE ('07/10/2007 00:00:01', 'MM/DD/YYYY HH24:MI:SS') + WHERE ad_column_id IN (417, 5059, 5065, 7794); + +COMMIT ; \ No newline at end of file