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 +; +