From 09cf86758c9736c1d02d1890d2d4f2773897a240 Mon Sep 17 00:00:00 2001 From: Richard Morales Date: Thu, 4 Jul 2013 17:57:50 -0500 Subject: [PATCH] IDEMPIERE-1123 Unnecessary showing user security fields --- .../oracle/20130603172740_IDEMPIERE-1123.sql | 12 ++++++++++++ .../postgresql/20130603172740_IDEMPIERE-1123.sql | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 migration/i1.0c-release/oracle/20130603172740_IDEMPIERE-1123.sql create mode 100644 migration/i1.0c-release/postgresql/20130603172740_IDEMPIERE-1123.sql diff --git a/migration/i1.0c-release/oracle/20130603172740_IDEMPIERE-1123.sql b/migration/i1.0c-release/oracle/20130603172740_IDEMPIERE-1123.sql new file mode 100644 index 0000000000..7a780aacdd --- /dev/null +++ b/migration/i1.0c-release/oracle/20130603172740_IDEMPIERE-1123.sql @@ -0,0 +1,12 @@ +-- Jul 3, 2013 5:16:26 PM COT +-- IDEMPIERE-1123 Unnecessary showing user security fields +UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2013-07-03 17:16:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200473 +; + +-- Jul 3, 2013 5:16:32 PM COT +-- IDEMPIERE-1123 Unnecessary showing user security fields +UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2013-07-03 17:16:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200475 +; + +SELECT register_migration_script('20130603172740_IDEMPIERE-1123.sql') FROM dual +; diff --git a/migration/i1.0c-release/postgresql/20130603172740_IDEMPIERE-1123.sql b/migration/i1.0c-release/postgresql/20130603172740_IDEMPIERE-1123.sql new file mode 100644 index 0000000000..942225d789 --- /dev/null +++ b/migration/i1.0c-release/postgresql/20130603172740_IDEMPIERE-1123.sql @@ -0,0 +1,13 @@ +-- Jul 3, 2013 5:16:26 PM COT +-- IDEMPIERE-1123 Unnecessary showing user security fields +UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2013-07-03 17:16:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200473 +; + +-- Jul 3, 2013 5:16:32 PM COT +-- IDEMPIERE-1123 Unnecessary showing user security fields +UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2013-07-03 17:16:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200475 +; + +SELECT register_migration_script('20130603172740_IDEMPIERE-1123.sql') FROM dual +; +