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