From a726ea78eec6fbc767a22f68ababe6934f9d505f Mon Sep 17 00:00:00 2001 From: Diego Ruiz Date: Tue, 9 Apr 2019 11:57:10 +0200 Subject: [PATCH] IDEMPIERE-3945 Country name Germany - Deutschland should be named Germany --- migration/i6.2/oracle/201904091130_IDEMPIERE-3945.sql | 11 +++++++++++ .../i6.2/postgresql/201904091130_IDEMPIERE-3945.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i6.2/oracle/201904091130_IDEMPIERE-3945.sql create mode 100644 migration/i6.2/postgresql/201904091130_IDEMPIERE-3945.sql 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 +; +