From cc8d8f2c5e01c6066384cc48411cd36c4b73cfd7 Mon Sep 17 00:00:00 2001 From: nmicoud Date: Fri, 13 Dec 2019 17:23:36 +0100 Subject: [PATCH] IDEMPIERE-4132 --- migration/i7.1/oracle/2019121317000_IDEMPIERE-4132.sql | 10 ++++++++++ .../i7.1/postgresql/2019121317000_IDEMPIERE-4132.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i7.1/oracle/2019121317000_IDEMPIERE-4132.sql create mode 100644 migration/i7.1/postgresql/2019121317000_IDEMPIERE-4132.sql diff --git a/migration/i7.1/oracle/2019121317000_IDEMPIERE-4132.sql b/migration/i7.1/oracle/2019121317000_IDEMPIERE-4132.sql new file mode 100644 index 0000000000..356218fb8d --- /dev/null +++ b/migration/i7.1/oracle/2019121317000_IDEMPIERE-4132.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4132 / Nederland/Netherlands +-- 2019-12-13 05:17:29 +UPDATE C_Country SET Name='Netherlands',Updated=TO_DATE('2019-12-13 17:17:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=105 +; + +SELECT register_migration_script('2019121317000_IDEMPIERE-4132.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i7.1/postgresql/2019121317000_IDEMPIERE-4132.sql b/migration/i7.1/postgresql/2019121317000_IDEMPIERE-4132.sql new file mode 100644 index 0000000000..bfea1ed37e --- /dev/null +++ b/migration/i7.1/postgresql/2019121317000_IDEMPIERE-4132.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-4132 / Nederland/Netherlands +-- 2019-12-13 05:17:29 +UPDATE C_Country SET Name='Netherlands',Updated=TO_TIMESTAMP('2019-12-13 17:17:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=105 +; + +SELECT register_migration_script('2019121317000_IDEMPIERE-4132.sql') FROM dual +; \ No newline at end of file