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