IDEMPIERE-4261 (#25)

Fix a typo on ProcessOK message
This commit is contained in:
Nicolas Micoud 2020-05-02 15:48:19 +02:00 committed by GitHub
parent 9193267acf
commit 5c523c5f12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

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

View File

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