IDEMPIERE-4983 : Fix Russian Ruble currency (#903)

* IDEMPIERE-4983 : Fix Russian Ruble currency

update currency currency code from RUR to RUB
This commit is contained in:
Nicolas Micoud 2021-09-30 13:21:21 +02:00 committed by GitHub
parent 080ba69967
commit 488715260e
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-4983
-- Sep 27, 2021, 5:00:28 PM CEST
UPDATE C_Currency SET ISO_Code = 'RUB',Updated=TO_DATE('2021-09-27 17:02:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE C_Currency_ID=155
;
SELECT register_migration_script('202109271700_IDEMPIERE-4983.sql') FROM dual
;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-4983
-- Sep 27, 2021, 5:00:28 PM CEST
UPDATE C_Currency SET ISO_Code = 'RUB',Updated=TO_TIMESTAMP('2021-09-27 17:02:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE C_Currency_ID=155
;
SELECT register_migration_script('202109271700_IDEMPIERE-4983.sql') FROM dual
;