From 5c523c5f122e41ad331bc6dece2238a5e43bd82d Mon Sep 17 00:00:00 2001 From: Nicolas Micoud <58596990+nmicoud@users.noreply.github.com> Date: Sat, 2 May 2020 15:48:19 +0200 Subject: [PATCH] IDEMPIERE-4261 (#25) Fix a typo on ProcessOK message --- migration/i7.1/oracle/202004301515_IDEMPIERE-4261.sql | 10 ++++++++++ .../i7.1/postgresql/202004301515_IDEMPIERE-4261.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i7.1/oracle/202004301515_IDEMPIERE-4261.sql create mode 100644 migration/i7.1/postgresql/202004301515_IDEMPIERE-4261.sql 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