diff --git a/migration/i2.1/oracle/201504011139_IDEMPIERE-2548.sql b/migration/i2.1/oracle/201504011139_IDEMPIERE-2548.sql new file mode 100644 index 0000000000..acde239547 --- /dev/null +++ b/migration/i2.1/oracle/201504011139_IDEMPIERE-2548.sql @@ -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 +; + diff --git a/migration/i2.1/postgresql/201504011139_IDEMPIERE-2548.sql b/migration/i2.1/postgresql/201504011139_IDEMPIERE-2548.sql new file mode 100644 index 0000000000..e5a6178080 --- /dev/null +++ b/migration/i2.1/postgresql/201504011139_IDEMPIERE-2548.sql @@ -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 +; +