From 0bca8c738b519dd2812c48569460199098045317 Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Wed, 10 Oct 2012 07:54:44 +0800 Subject: [PATCH] IDEMPIERE-369 Master Detail layout improvements. Script to disable included tab field. --- migration/360lts-release/oracle/930_IDEMPIERE-369.sql | 8 ++++++++ migration/360lts-release/postgresql/930_IDEMPIERE-369.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/360lts-release/oracle/930_IDEMPIERE-369.sql create mode 100644 migration/360lts-release/postgresql/930_IDEMPIERE-369.sql diff --git a/migration/360lts-release/oracle/930_IDEMPIERE-369.sql b/migration/360lts-release/oracle/930_IDEMPIERE-369.sql new file mode 100644 index 0000000000..ecef75aeab --- /dev/null +++ b/migration/360lts-release/oracle/930_IDEMPIERE-369.sql @@ -0,0 +1,8 @@ +-- Sep 12, 2012 6:08:38 PM MYT +-- IDEMPIERE-369 Master Detail layout improvements +UPDATE AD_Field SET IsDisplayed='N', IsActive='N', IsDisplayedGrid='N',Updated=TO_DATE('2012-09-12 18:08:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=6432 +; + +SELECT register_migration_script('930_IDEMPIERE-369.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/930_IDEMPIERE-369.sql b/migration/360lts-release/postgresql/930_IDEMPIERE-369.sql new file mode 100644 index 0000000000..84df939894 --- /dev/null +++ b/migration/360lts-release/postgresql/930_IDEMPIERE-369.sql @@ -0,0 +1,8 @@ +-- Sep 12, 2012 6:08:38 PM MYT +-- IDEMPIERE-369 Master Detail layout improvements +UPDATE AD_Field SET IsDisplayed='N', IsActive='N', IsDisplayedGrid='N',Updated=TO_TIMESTAMP('2012-09-12 18:08:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=6432 +; + +SELECT register_migration_script('930_IDEMPIERE-369.sql') FROM dual +; +