IDEMPIERE-2548 Misspelling in Unit of Measure Type

This commit is contained in:
Carlos Ruiz 2015-04-01 11:40:21 -05:00
parent 7b07b58314
commit 82377b98e2
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-2548 Misspelling in Unit of Measure Type
-- Apr 1, 2015 11:39:33 AM COT
UPDATE AD_Ref_List SET Name='Weight',Updated=TO_DATE('2015-04-01 11:39:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53530
;
SELECT register_migration_script('201504011139_IDEMPIERE-2548.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-2548 Misspelling in Unit of Measure Type
-- Apr 1, 2015 11:39:33 AM COT
UPDATE AD_Ref_List SET Name='Weight',Updated=TO_TIMESTAMP('2015-04-01 11:39:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53530
;
SELECT register_migration_script('201504011139_IDEMPIERE-2548.sql') FROM dual
;