From 18e66c603582afcc28e8fa75ba0a8d8217b11999 Mon Sep 17 00:00:00 2001 From: hieplq Date: Mon, 10 Feb 2014 01:13:44 +0700 Subject: [PATCH] IDEMPIERE-1712:Field "Event Change Log" of "Change Audit" window is not read only. --- migration/i2.0/oracle/201402101604-IDEMPIERE-1712.sql | 10 ++++++++++ .../i2.0/postgresql/201402101604-IDEMPIERE-1712.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i2.0/oracle/201402101604-IDEMPIERE-1712.sql create mode 100644 migration/i2.0/postgresql/201402101604-IDEMPIERE-1712.sql diff --git a/migration/i2.0/oracle/201402101604-IDEMPIERE-1712.sql b/migration/i2.0/oracle/201402101604-IDEMPIERE-1712.sql new file mode 100644 index 0000000000..6a33b6f4d9 --- /dev/null +++ b/migration/i2.0/oracle/201402101604-IDEMPIERE-1712.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Feb 10, 2014 1:01:33 AM ICT +-- IDEMPIERE-1712:Field "Event Change Log" of "Change Audit" window is not read only. +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_DATE('2014-02-10 01:01:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54397 +; + +SELECT register_migration_script('201402101604-IDEMPIERE-1712.sql') FROM dual +; diff --git a/migration/i2.0/postgresql/201402101604-IDEMPIERE-1712.sql b/migration/i2.0/postgresql/201402101604-IDEMPIERE-1712.sql new file mode 100644 index 0000000000..1a7634e43b --- /dev/null +++ b/migration/i2.0/postgresql/201402101604-IDEMPIERE-1712.sql @@ -0,0 +1,7 @@ +-- Feb 10, 2014 1:01:33 AM ICT +-- IDEMPIERE-1712:Field "Event Change Log" of "Change Audit" window is not read only. +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2014-02-10 01:01:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54397 +; + +SELECT register_migration_script('201402101604-IDEMPIERE-1712.sql') FROM dual +;