From 9e7d32a5a7c5f43c3679ce2c5e7e8c8070bd0bdf Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 5 May 2016 12:03:16 -0700 Subject: [PATCH] IDEMPIERE-3090 Inventory Count Search Key is too short --- .../i3.1/oracle/201605051202_IDEMPIERE-3090.sql | 15 +++++++++++++++ .../postgresql/201605051202_IDEMPIERE-3090.sql | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 migration/i3.1/oracle/201605051202_IDEMPIERE-3090.sql create mode 100644 migration/i3.1/postgresql/201605051202_IDEMPIERE-3090.sql diff --git a/migration/i3.1/oracle/201605051202_IDEMPIERE-3090.sql b/migration/i3.1/oracle/201605051202_IDEMPIERE-3090.sql new file mode 100644 index 0000000000..bc828fab8d --- /dev/null +++ b/migration/i3.1/oracle/201605051202_IDEMPIERE-3090.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-3090 Inventory Count Search Key is too short +-- May 5, 2016 11:47:46 AM PDT +UPDATE AD_Process_Para SET FieldLength=40,Updated=TO_DATE('2016-05-05 11:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=158 +; + +-- May 5, 2016 11:48:34 AM PDT +UPDATE AD_Process_Para SET FieldLength=40,Updated=TO_DATE('2016-05-05 11:48:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=123 +; + +SELECT register_migration_script('201605051202_IDEMPIERE-3090.sql') FROM dual +; + diff --git a/migration/i3.1/postgresql/201605051202_IDEMPIERE-3090.sql b/migration/i3.1/postgresql/201605051202_IDEMPIERE-3090.sql new file mode 100644 index 0000000000..c60bcce31b --- /dev/null +++ b/migration/i3.1/postgresql/201605051202_IDEMPIERE-3090.sql @@ -0,0 +1,12 @@ +-- IDEMPIERE-3090 Inventory Count Search Key is too short +-- May 5, 2016 11:47:46 AM PDT +UPDATE AD_Process_Para SET FieldLength=40,Updated=TO_TIMESTAMP('2016-05-05 11:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=158 +; + +-- May 5, 2016 11:48:34 AM PDT +UPDATE AD_Process_Para SET FieldLength=40,Updated=TO_TIMESTAMP('2016-05-05 11:48:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=123 +; + +SELECT register_migration_script('201605051202_IDEMPIERE-3090.sql') FROM dual +; +