Merge release-7.1 into master

This commit is contained in:
Carlos Ruiz 2019-12-14 13:23:41 +01:00
commit c1979109dc
2 changed files with 17 additions and 0 deletions

View File

@ -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
;

View File

@ -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
;