From 495c9ef1086c89849ef0cff2da8c250b85ef6356 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Fri, 21 Oct 2022 04:07:08 +0200 Subject: [PATCH] IDEMPIERE-2901 Period Control Management / Change period status and docbasetype to multiple-selection list (#1535) --- .../i9/oracle/202210191926_IDEMPIERE-2901.sql | 14 ++++++++++++++ .../i9/postgresql/202210191926_IDEMPIERE-2901.sql | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 migration/i9/oracle/202210191926_IDEMPIERE-2901.sql create mode 100644 migration/i9/postgresql/202210191926_IDEMPIERE-2901.sql diff --git a/migration/i9/oracle/202210191926_IDEMPIERE-2901.sql b/migration/i9/oracle/202210191926_IDEMPIERE-2901.sql new file mode 100644 index 0000000000..d053f8498d --- /dev/null +++ b/migration/i9/oracle/202210191926_IDEMPIERE-2901.sql @@ -0,0 +1,14 @@ +-- IDEMPIERE-2901 - Period Control Management - Multi-Select List Parameters +SELECT register_migration_script('202210191926_IDEMPIERE-2901.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 19, 2022, 7:26:01 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=200161, QueryOperator='Like', QueryFunction='Upper',Updated=TO_TIMESTAMP('2022-10-19 19:26:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200222 +; + +-- Oct 19, 2022, 7:26:13 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=200161, QueryOperator='Like', QueryFunction='Upper',Updated=TO_TIMESTAMP('2022-10-19 19:26:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200223 +; + diff --git a/migration/i9/postgresql/202210191926_IDEMPIERE-2901.sql b/migration/i9/postgresql/202210191926_IDEMPIERE-2901.sql new file mode 100644 index 0000000000..87fa4bb2a1 --- /dev/null +++ b/migration/i9/postgresql/202210191926_IDEMPIERE-2901.sql @@ -0,0 +1,11 @@ +-- IDEMPIERE-2901 - Period Control Management - Multi-Select List Parameters +SELECT register_migration_script('202210191926_IDEMPIERE-2901.sql') FROM dual; + +-- Oct 19, 2022, 7:26:01 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=200161, QueryOperator='Like', QueryFunction='Upper',Updated=TO_TIMESTAMP('2022-10-19 19:26:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200222 +; + +-- Oct 19, 2022, 7:26:13 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=200161, QueryOperator='Like', QueryFunction='Upper',Updated=TO_TIMESTAMP('2022-10-19 19:26:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200223 +; +