From 7c941925330d9359079e705739819d90c586d520 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 21 Dec 2021 14:37:09 +0100 Subject: [PATCH] IDEMPIERE-5116 Recent Item on System Configurator revealing too much information (#1074) --- .../i8.2z/oracle/202112202038_IDEMPIERE-5116.sql | 11 +++++++++++ .../i8.2z/postgresql/202112202038_IDEMPIERE-5116.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i8.2z/oracle/202112202038_IDEMPIERE-5116.sql create mode 100644 migration/i8.2z/postgresql/202112202038_IDEMPIERE-5116.sql diff --git a/migration/i8.2z/oracle/202112202038_IDEMPIERE-5116.sql b/migration/i8.2z/oracle/202112202038_IDEMPIERE-5116.sql new file mode 100644 index 0000000000..2415aace46 --- /dev/null +++ b/migration/i8.2z/oracle/202112202038_IDEMPIERE-5116.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-5116 Recent Item on System Configurator revealing too much information +-- Dec 20, 2021, 8:27:30 PM CET +UPDATE AD_Window SET TitleLogic='@Name@',Updated=TO_DATE('2021-12-20 20:27:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=50006 +; + +SELECT register_migration_script('202112202038_IDEMPIERE-5116.sql') FROM dual +; + diff --git a/migration/i8.2z/postgresql/202112202038_IDEMPIERE-5116.sql b/migration/i8.2z/postgresql/202112202038_IDEMPIERE-5116.sql new file mode 100644 index 0000000000..d8ccf686ed --- /dev/null +++ b/migration/i8.2z/postgresql/202112202038_IDEMPIERE-5116.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-5116 Recent Item on System Configurator revealing too much information +-- Dec 20, 2021, 8:27:30 PM CET +UPDATE AD_Window SET TitleLogic='@Name@',Updated=TO_TIMESTAMP('2021-12-20 20:27:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=50006 +; + +SELECT register_migration_script('202112202038_IDEMPIERE-5116.sql') FROM dual +; +