From 38bebf5f3f6f39f66a6ac481704002a5dafc1f27 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 9 May 2016 11:21:14 -0700 Subject: [PATCH] IDEMPIERE-3093 Product fields not showing identifiers in some windows --- .../i3.1/oracle/201605091119_IDEMPIERE-3093.sql | 14 ++++++++++++++ .../postgresql/201605091119_IDEMPIERE-3093.sql | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 migration/i3.1/oracle/201605091119_IDEMPIERE-3093.sql create mode 100644 migration/i3.1/postgresql/201605091119_IDEMPIERE-3093.sql diff --git a/migration/i3.1/oracle/201605091119_IDEMPIERE-3093.sql b/migration/i3.1/oracle/201605091119_IDEMPIERE-3093.sql new file mode 100644 index 0000000000..67f43257e2 --- /dev/null +++ b/migration/i3.1/oracle/201605091119_IDEMPIERE-3093.sql @@ -0,0 +1,14 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-3093 Product fields not showing identifiers in some windows +-- May 9, 2016 11:18:56 AM PDT +UPDATE AD_Ref_Table SET IsValueDisplayed='Y',Updated=TO_DATE('2016-05-09 11:18:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID IN (161, +162, +171, +211) +; + +SELECT register_migration_script('201605091119_IDEMPIERE-3093.sql') FROM dual +; + diff --git a/migration/i3.1/postgresql/201605091119_IDEMPIERE-3093.sql b/migration/i3.1/postgresql/201605091119_IDEMPIERE-3093.sql new file mode 100644 index 0000000000..3ce1422983 --- /dev/null +++ b/migration/i3.1/postgresql/201605091119_IDEMPIERE-3093.sql @@ -0,0 +1,11 @@ +-- IDEMPIERE-3093 Product fields not showing identifiers in some windows +-- May 9, 2016 11:18:56 AM PDT +UPDATE AD_Ref_Table SET IsValueDisplayed='Y',Updated=TO_TIMESTAMP('2016-05-09 11:18:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID IN (161, +162, +171, +211) +; + +SELECT register_migration_script('201605091119_IDEMPIERE-3093.sql') FROM dual +; +