diff --git a/migration/i7.1/oracle/202004301515_IDEMPIERE-4261.sql b/migration/i7.1/oracle/202004301515_IDEMPIERE-4261.sql new file mode 100644 index 0000000000..afbac8d67d --- /dev/null +++ b/migration/i7.1/oracle/202004301515_IDEMPIERE-4261.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4261 Fix typo in ProcessOK message +-- Apr 30, 2020, 3:16:56 PM CEST +UPDATE AD_Message SET MsgText='Process finished successfully',Updated=TO_DATE('2020-04-30 15:16:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Message_ID=441 +; + +SELECT register_migration_script('202004301515_IDEMPIERE-4261.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i7.1/postgresql/202004301515_IDEMPIERE-4261.sql b/migration/i7.1/postgresql/202004301515_IDEMPIERE-4261.sql new file mode 100644 index 0000000000..f17cfae297 --- /dev/null +++ b/migration/i7.1/postgresql/202004301515_IDEMPIERE-4261.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-4261 Fix typo in ProcessOK message +-- Apr 30, 2020, 3:16:56 PM CEST +UPDATE AD_Message SET MsgText='Process finished successfully',Updated=TO_TIMESTAMP('2020-04-30 15:16:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Message_ID=441 +; + +SELECT register_migration_script('202004301515_IDEMPIERE-4261.sql') FROM dual +; \ No newline at end of file