From 98e013f571df8c8f869a9ffba96e1cc39f8cc8d8 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 29 Jan 2013 17:07:39 -0800 Subject: [PATCH] IDEMPIERE-362 Hide things that don't work on iDempiere --- .../oracle/201301291707_IDEMPIERE-362.sql | 13 +++++++++++++ .../postgresql/201301291707_IDEMPIERE-362.sql | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201301291707_IDEMPIERE-362.sql create mode 100644 migration/i1.0a-release/postgresql/201301291707_IDEMPIERE-362.sql diff --git a/migration/i1.0a-release/oracle/201301291707_IDEMPIERE-362.sql b/migration/i1.0a-release/oracle/201301291707_IDEMPIERE-362.sql new file mode 100644 index 0000000000..f6f16a5ec8 --- /dev/null +++ b/migration/i1.0a-release/oracle/201301291707_IDEMPIERE-362.sql @@ -0,0 +1,13 @@ +-- Jan 29, 2013 5:06:41 PM PST +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET SeqNo=190,Updated=TO_DATE('2013-01-29 17:06:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3945 +; + +-- Jan 29, 2013 5:06:41 PM PST +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET SeqNo=0, IsDisplayed='N', XPosition=1,Updated=TO_DATE('2013-01-29 17:06:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58784 +; + +SELECT register_migration_script('201301291707_IDEMPIERE-362.sql') FROM dual +; + diff --git a/migration/i1.0a-release/postgresql/201301291707_IDEMPIERE-362.sql b/migration/i1.0a-release/postgresql/201301291707_IDEMPIERE-362.sql new file mode 100644 index 0000000000..fcf8183525 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201301291707_IDEMPIERE-362.sql @@ -0,0 +1,13 @@ +-- Jan 29, 2013 5:06:41 PM PST +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET SeqNo=190,Updated=TO_TIMESTAMP('2013-01-29 17:06:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3945 +; + +-- Jan 29, 2013 5:06:41 PM PST +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET SeqNo=0, IsDisplayed='N', XPosition=1,Updated=TO_TIMESTAMP('2013-01-29 17:06:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58784 +; + +SELECT register_migration_script('201301291707_IDEMPIERE-362.sql') FROM dual +; +