diff --git a/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql b/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql new file mode 100644 index 0000000000..b730828a9b --- /dev/null +++ b/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql @@ -0,0 +1,9 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Mar 16, 2014 1:47:55 PM ICT +-- IDEMPIERE-1820 node parameter tab (in workfow window) should hidden when not need +UPDATE AD_Tab SET DisplayLogic='@Action@=P|@Action@=R',Updated=TO_DATE('2015-09-28 09:48:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=577 +; +SELECT register_migration_script('210509280947_IDEMPIERE-1820.sql') FROM dual +; diff --git a/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql b/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql new file mode 100644 index 0000000000..36ac28e251 --- /dev/null +++ b/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql @@ -0,0 +1,6 @@ +-- Mar 16, 2014 1:47:55 PM ICT +-- IDEMPIERE-1820 node parameter tab (in workfow window) should hidden when not need +UPDATE AD_Tab SET DisplayLogic='@Action@=P|@Action@=R',Updated=TO_TIMESTAMP('2015-09-28 09:48:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=577 +; +SELECT register_migration_script('210509280947_IDEMPIERE-1820.sql') FROM dual +;