IDEMPIERE-2139 Column names (Reserved, Ordered) in window warehouse (tab storage) and product (locator) are not consistent

This commit is contained in:
Carlos Ruiz 2020-04-02 14:35:16 +02:00
parent 0b3d1415b5
commit 1156f6c859
2 changed files with 19 additions and 0 deletions

View File

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

View File

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