From 10743a1d210d9f455883ff09b1623bbb01d9dd7c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 3 Apr 2013 17:15:17 -0500 Subject: [PATCH] IDEMPIERE-362 Hide things that don't work on iDempiere --- .../oracle/201304031714_IDEMPIERE-362.sql | 13 +++++++++++++ .../postgresql/201304031714_IDEMPIERE-362.sql | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201304031714_IDEMPIERE-362.sql create mode 100644 migration/i1.0a-release/postgresql/201304031714_IDEMPIERE-362.sql diff --git a/migration/i1.0a-release/oracle/201304031714_IDEMPIERE-362.sql b/migration/i1.0a-release/oracle/201304031714_IDEMPIERE-362.sql new file mode 100644 index 0000000000..c7e1904622 --- /dev/null +++ b/migration/i1.0a-release/oracle/201304031714_IDEMPIERE-362.sql @@ -0,0 +1,13 @@ +-- Apr 3, 2013 5:10:09 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='Y',Updated=TO_DATE('2013-04-03 17:10:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=5346 +; + +-- Apr 3, 2013 5:12:43 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2013-04-03 17:12:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12164 +; + +SELECT register_migration_script('201304031714_IDEMPIERE-362.sql') FROM dual +; + diff --git a/migration/i1.0a-release/postgresql/201304031714_IDEMPIERE-362.sql b/migration/i1.0a-release/postgresql/201304031714_IDEMPIERE-362.sql new file mode 100644 index 0000000000..6cb666c510 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201304031714_IDEMPIERE-362.sql @@ -0,0 +1,13 @@ +-- Apr 3, 2013 5:10:09 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='Y',Updated=TO_TIMESTAMP('2013-04-03 17:10:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=5346 +; + +-- Apr 3, 2013 5:12:43 PM COT +-- IDEMPIERE-362 Hide things that don't work on iDempiere +UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2013-04-03 17:12:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12164 +; + +SELECT register_migration_script('201304031714_IDEMPIERE-362.sql') FROM dual +; +