From 1de363d65dfeb90801859f96ba9c491a8345b9fd Mon Sep 17 00:00:00 2001 From: Diego Ruiz <12065321+d-ruiz@users.noreply.github.com> Date: Fri, 28 Apr 2023 13:18:57 +0200 Subject: [PATCH] IDEMPIERE-5699 - Deactivated Product Info toolbar button (#1809) --- migration/iD11/oracle/202304281200_IDEMPIERE-5699.sql | 10 ++++++++++ .../iD11/postgresql/202304281200_IDEMPIERE-5699.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/iD11/oracle/202304281200_IDEMPIERE-5699.sql create mode 100644 migration/iD11/postgresql/202304281200_IDEMPIERE-5699.sql diff --git a/migration/iD11/oracle/202304281200_IDEMPIERE-5699.sql b/migration/iD11/oracle/202304281200_IDEMPIERE-5699.sql new file mode 100644 index 0000000000..b12321fc12 --- /dev/null +++ b/migration/iD11/oracle/202304281200_IDEMPIERE-5699.sql @@ -0,0 +1,10 @@ +-- IDEMPIERE-5699 - Deactivate Product Info toolbar button +SELECT register_migration_script('202304281200_IDEMPIERE-5699.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Apr 28, 2023, 12:00:37 PM CEST +UPDATE AD_ToolBarButton SET IsActive='N',Updated=TO_TIMESTAMP('2023-04-28 12:00:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200056 +; + diff --git a/migration/iD11/postgresql/202304281200_IDEMPIERE-5699.sql b/migration/iD11/postgresql/202304281200_IDEMPIERE-5699.sql new file mode 100644 index 0000000000..3d892f9747 --- /dev/null +++ b/migration/iD11/postgresql/202304281200_IDEMPIERE-5699.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-5699 - Deactivate Product Info toolbar button +SELECT register_migration_script('202304281200_IDEMPIERE-5699.sql') FROM dual; + +-- Apr 28, 2023, 12:00:37 PM CEST +UPDATE AD_ToolBarButton SET IsActive='N',Updated=TO_TIMESTAMP('2023-04-28 12:00:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200056 +; +