From 6d108b9efc8040ff26c1e6ee6f45648aac24878b Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 18 Jun 2013 17:45:33 -0500 Subject: [PATCH] IDEMPIERE-162 Let Process Role Access Update honor previous modifications to permissions / default to preserve modifications (safer) --- .../i1.0b-release/oracle/201306181743_IDEMPIERE-162.sql | 8 ++++++++ .../postgresql/201306181743_IDEMPIERE-162.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i1.0b-release/oracle/201306181743_IDEMPIERE-162.sql create mode 100644 migration/i1.0b-release/postgresql/201306181743_IDEMPIERE-162.sql diff --git a/migration/i1.0b-release/oracle/201306181743_IDEMPIERE-162.sql b/migration/i1.0b-release/oracle/201306181743_IDEMPIERE-162.sql new file mode 100644 index 0000000000..34c9b526ba --- /dev/null +++ b/migration/i1.0b-release/oracle/201306181743_IDEMPIERE-162.sql @@ -0,0 +1,8 @@ +-- Jun 18, 2013 5:43:29 PM COT +-- IDEMPIERE-162 Let Process Role Access Update honor previous modifications to permissions +UPDATE AD_Process_Para SET IsMandatory='Y', DefaultValue='N',Updated=TO_DATE('2013-06-18 17:43:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=200007 +; + +SELECT register_migration_script('201306181743_IDEMPIERE-162.sql') FROM dual +; + diff --git a/migration/i1.0b-release/postgresql/201306181743_IDEMPIERE-162.sql b/migration/i1.0b-release/postgresql/201306181743_IDEMPIERE-162.sql new file mode 100644 index 0000000000..7d1c9af8a9 --- /dev/null +++ b/migration/i1.0b-release/postgresql/201306181743_IDEMPIERE-162.sql @@ -0,0 +1,8 @@ +-- Jun 18, 2013 5:43:29 PM COT +-- IDEMPIERE-162 Let Process Role Access Update honor previous modifications to permissions +UPDATE AD_Process_Para SET IsMandatory='Y', DefaultValue='N',Updated=TO_TIMESTAMP('2013-06-18 17:43:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=200007 +; + +SELECT register_migration_script('201306181743_IDEMPIERE-162.sql') FROM dual +; +