From 114dc007afdb797510b3d0616d136322a3ac2d06 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 18 Oct 2023 12:46:37 +0200 Subject: [PATCH] IDEMPIERE-5883 Improve default for Receipt parameter in Payment Info (#2057) --- migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql | 10 ++++++++++ .../iD10/postgresql/202310161235_IDEMPIERE-5883.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql create mode 100644 migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql diff --git a/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql b/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql new file mode 100644 index 0000000000..3ac7933de2 --- /dev/null +++ b/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql @@ -0,0 +1,10 @@ +-- IDEMPIERE-5883 Improve default for Receipt parameter in Payment Info +SELECT register_migration_script('202310161235_IDEMPIERE-5883.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 16, 2023, 12:35:12 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=17, AD_Reference_Value_ID=319, DefaultValue=NULL,Updated=TO_TIMESTAMP('2023-10-16 12:35:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200085 +; + diff --git a/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql b/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql new file mode 100644 index 0000000000..a206680b37 --- /dev/null +++ b/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-5883 Improve default for Receipt parameter in Payment Info +SELECT register_migration_script('202310161235_IDEMPIERE-5883.sql') FROM dual; + +-- Oct 16, 2023, 12:35:12 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=17, AD_Reference_Value_ID=319, DefaultValue=NULL,Updated=TO_TIMESTAMP('2023-10-16 12:35:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200085 +; +