diff --git a/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql b/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql new file mode 100644 index 0000000000..8c12212502 --- /dev/null +++ b/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4553 POS menu option throwing error +-- Nov 20, 2020, 8:58:28 PM CET +UPDATE AD_Menu SET IsActive='N',Updated=TO_DATE('2020-11-20 20:58:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=419 +; + +SELECT register_migration_script('202011202059_IDEMPIERE-4553.sql') FROM dual +; + diff --git a/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql b/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql new file mode 100644 index 0000000000..43458e208b --- /dev/null +++ b/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4553 POS menu option throwing error +-- Nov 20, 2020, 8:58:28 PM CET +UPDATE AD_Menu SET IsActive='N',Updated=TO_TIMESTAMP('2020-11-20 20:58:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=419 +; + +SELECT register_migration_script('202011202059_IDEMPIERE-4553.sql') FROM dual +; +