diff --git a/migration/i8.2z/oracle/202109271700_IDEMPIERE-4983.sql b/migration/i8.2z/oracle/202109271700_IDEMPIERE-4983.sql new file mode 100644 index 0000000000..e8919884d2 --- /dev/null +++ b/migration/i8.2z/oracle/202109271700_IDEMPIERE-4983.sql @@ -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 +; diff --git a/migration/i8.2z/postgresql/202109271700_IDEMPIERE-4983.sql b/migration/i8.2z/postgresql/202109271700_IDEMPIERE-4983.sql new file mode 100644 index 0000000000..2a653452bf --- /dev/null +++ b/migration/i8.2z/postgresql/202109271700_IDEMPIERE-4983.sql @@ -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 +;