From 1156f6c8597c27714e1818f584dd4f8482ca2992 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 2 Apr 2020 14:35:16 +0200 Subject: [PATCH] IDEMPIERE-2139 Column names (Reserved, Ordered) in window warehouse (tab storage) and product (locator) are not consistent --- .../i7.1z/oracle/202004021202_IDEMPIERE-2139.sql | 11 +++++++++++ .../i7.1z/postgresql/202004021202_IDEMPIERE-2139.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i7.1z/oracle/202004021202_IDEMPIERE-2139.sql create mode 100644 migration/i7.1z/postgresql/202004021202_IDEMPIERE-2139.sql 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 +; +