From 1c61e95e8c4d4e59e8c74c00f8ed7cc23a027d88 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 3 Apr 2013 18:12:43 -0500 Subject: [PATCH] IDEMPIERE-362 Hide things that don't work on iDempiere / Thanks to Juliana Corredor --- .../oracle/201304011830_IDEMPIERE-362.sql | 18 ++++++++++++++++++ .../postgresql/201304011830_IDEMPIERE-362.sql | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201304011830_IDEMPIERE-362.sql create mode 100644 migration/i1.0a-release/postgresql/201304011830_IDEMPIERE-362.sql diff --git a/migration/i1.0a-release/oracle/201304011830_IDEMPIERE-362.sql b/migration/i1.0a-release/oracle/201304011830_IDEMPIERE-362.sql new file mode 100644 index 0000000000..d65c71e3e0 --- /dev/null +++ b/migration/i1.0a-release/oracle/201304011830_IDEMPIERE-362.sql @@ -0,0 +1,18 @@ +-- Apr 1, 2013 5:46:56 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2013-04-01 17:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54045 +; + +-- Apr 1, 2013 5:50:42 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2013-04-01 17:50:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54040 +; + +-- Apr 1, 2013 5:52:51 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Window SET IsActive='N',Updated=TO_DATE('2013-04-01 17:52:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=53012 +; + +SELECT register_migration_script('201304011830_IDEMPIERE-362.sql') FROM dual +; + diff --git a/migration/i1.0a-release/postgresql/201304011830_IDEMPIERE-362.sql b/migration/i1.0a-release/postgresql/201304011830_IDEMPIERE-362.sql new file mode 100644 index 0000000000..e9c9ef5e66 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201304011830_IDEMPIERE-362.sql @@ -0,0 +1,18 @@ +-- Apr 1, 2013 5:46:56 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2013-04-01 17:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54045 +; + +-- Apr 1, 2013 5:50:42 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2013-04-01 17:50:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54040 +; + +-- Apr 1, 2013 5:52:51 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Window SET IsActive='N',Updated=TO_TIMESTAMP('2013-04-01 17:52:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=53012 +; + +SELECT register_migration_script('201304011830_IDEMPIERE-362.sql') FROM dual +; +