From e15433daa1f68f83a1de1c1919b3e402c7baebd3 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 6 Nov 2013 15:27:00 -0500 Subject: [PATCH] IDEMPIERE-1184 Register browser information available on AD_Session / fix UI to show properly the field --- .../i2.0/oracle/201311061521_IDEMPIERE-1184.sql | 15 +++++++++++++++ .../postgresql/201311061521_IDEMPIERE-1184.sql | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 migration/i2.0/oracle/201311061521_IDEMPIERE-1184.sql create mode 100644 migration/i2.0/postgresql/201311061521_IDEMPIERE-1184.sql diff --git a/migration/i2.0/oracle/201311061521_IDEMPIERE-1184.sql b/migration/i2.0/oracle/201311061521_IDEMPIERE-1184.sql new file mode 100644 index 0000000000..22970a7e41 --- /dev/null +++ b/migration/i2.0/oracle/201311061521_IDEMPIERE-1184.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Nov 6, 2013 3:18:14 PM COT +-- IDEMPIERE-1184 Register browser information available on AD_Session +UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_DATE('2013-11-06 15:18:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54349 +; + +-- Nov 6, 2013 3:18:29 PM COT +UPDATE AD_Field SET NumLines=8,Updated=TO_DATE('2013-11-06 15:18:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54393 +; + +SELECT register_migration_script('201311061521_IDEMPIERE-1184.sql') FROM dual +; + diff --git a/migration/i2.0/postgresql/201311061521_IDEMPIERE-1184.sql b/migration/i2.0/postgresql/201311061521_IDEMPIERE-1184.sql new file mode 100644 index 0000000000..4c3a338cfb --- /dev/null +++ b/migration/i2.0/postgresql/201311061521_IDEMPIERE-1184.sql @@ -0,0 +1,12 @@ +-- Nov 6, 2013 3:18:14 PM COT +-- IDEMPIERE-1184 Register browser information available on AD_Session +UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_TIMESTAMP('2013-11-06 15:18:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54349 +; + +-- Nov 6, 2013 3:18:29 PM COT +UPDATE AD_Field SET NumLines=8,Updated=TO_TIMESTAMP('2013-11-06 15:18:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54393 +; + +SELECT register_migration_script('201311061521_IDEMPIERE-1184.sql') FROM dual +; +