From c5a79dd3dc6d992d1a4116a09bd71cd5b030da77 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 25 Nov 2021 05:31:32 +0100 Subject: [PATCH] IDEMPIERE-5051 PaymentExportClass must be advanced field (#1000) --- migration/i8.2/oracle/202111231355_IDEMPIERE-5051.sql | 11 +++++++++++ .../i8.2/postgresql/202111231355_IDEMPIERE-5051.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i8.2/oracle/202111231355_IDEMPIERE-5051.sql create mode 100644 migration/i8.2/postgresql/202111231355_IDEMPIERE-5051.sql diff --git a/migration/i8.2/oracle/202111231355_IDEMPIERE-5051.sql b/migration/i8.2/oracle/202111231355_IDEMPIERE-5051.sql new file mode 100644 index 0000000000..85c99bec78 --- /dev/null +++ b/migration/i8.2/oracle/202111231355_IDEMPIERE-5051.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-5051 PaymentExportClass must be advanced field +-- Nov 23, 2021, 1:54:33 PM CET +UPDATE AD_Field SET AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, ReadOnlyLogic='@#ShowAdvanced@=N', IsToolbarButton=NULL,Updated=TO_DATE('2021-11-23 13:54:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=60881 +; + +SELECT register_migration_script('202111231355_IDEMPIERE-5051.sql') FROM dual +; + diff --git a/migration/i8.2/postgresql/202111231355_IDEMPIERE-5051.sql b/migration/i8.2/postgresql/202111231355_IDEMPIERE-5051.sql new file mode 100644 index 0000000000..a93a801c11 --- /dev/null +++ b/migration/i8.2/postgresql/202111231355_IDEMPIERE-5051.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-5051 PaymentExportClass must be advanced field +-- Nov 23, 2021, 1:54:33 PM CET +UPDATE AD_Field SET AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, ReadOnlyLogic='@#ShowAdvanced@=N', IsToolbarButton=NULL,Updated=TO_TIMESTAMP('2021-11-23 13:54:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=60881 +; + +SELECT register_migration_script('202111231355_IDEMPIERE-5051.sql') FROM dual +; +