diff --git a/migration/i6.2/oracle/201904091130_IDEMPIERE-3945.sql b/migration/i6.2/oracle/201904091130_IDEMPIERE-3945.sql new file mode 100644 index 0000000000..f198245303 --- /dev/null +++ b/migration/i6.2/oracle/201904091130_IDEMPIERE-3945.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-3945 Country name "Germany - Deutschland" should be named Germany +-- Apr 9, 2019, 11:22:01 AM CEST +UPDATE C_Country SET Name='Germany',Description='Deutschland',Updated=TO_DATE('2019-04-09 11:22:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=101 +; + +SELECT register_migration_script('201904091130_IDEMPIERE-3945.sql') FROM dual +; + diff --git a/migration/i6.2/postgresql/201904091130_IDEMPIERE-3945.sql b/migration/i6.2/postgresql/201904091130_IDEMPIERE-3945.sql new file mode 100644 index 0000000000..6d0a7866f6 --- /dev/null +++ b/migration/i6.2/postgresql/201904091130_IDEMPIERE-3945.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-3945 Country name "Germany - Deutschland" should be named Germany +-- Apr 9, 2019, 11:22:01 AM CEST +UPDATE C_Country SET Name='Germany',Description='Deutschland',Updated=TO_TIMESTAMP('2019-04-09 11:22:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=101 +; + +SELECT register_migration_script('201904091130_IDEMPIERE-3945.sql') FROM dual +; +