IDEMPIERE-4132

This commit is contained in:
nmicoud 2019-12-13 17:23:36 +01:00 committed by Carlos Ruiz
parent f847b9c367
commit cc8d8f2c5e
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
;