diff --git a/migration/i7.1z/oracle/202004021202_IDEMPIERE-2139.sql b/migration/i7.1z/oracle/202004021202_IDEMPIERE-2139.sql new file mode 100644 index 0000000000..4254c24d46 --- /dev/null +++ b/migration/i7.1z/oracle/202004021202_IDEMPIERE-2139.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2139 Column names (Reserved, Ordered) in window warehouse (tab storage) and product (locator) are not consistent +-- Apr 2, 2020, 11:59:24 AM CEST +UPDATE AD_Window SET IsSOTrx='Y',Updated=TO_DATE('2020-04-02 11:59:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=140 +; + +SELECT register_migration_script('202004021202_IDEMPIERE-2139.sql') FROM dual +; + diff --git a/migration/i7.1z/postgresql/202004021202_IDEMPIERE-2139.sql b/migration/i7.1z/postgresql/202004021202_IDEMPIERE-2139.sql new file mode 100644 index 0000000000..cd06eb0d3e --- /dev/null +++ b/migration/i7.1z/postgresql/202004021202_IDEMPIERE-2139.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-2139 Column names (Reserved, Ordered) in window warehouse (tab storage) and product (locator) are not consistent +-- Apr 2, 2020, 11:59:24 AM CEST +UPDATE AD_Window SET IsSOTrx='Y',Updated=TO_TIMESTAMP('2020-04-02 11:59:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=140 +; + +SELECT register_migration_script('202004021202_IDEMPIERE-2139.sql') FROM dual +; +