Skip to content

Commit

Permalink
IDEMPIERE-5051 PaymentExportClass must be advanced field (#1000)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosRuiz-globalqss committed Nov 27, 2021
1 parent 8f2cac0 commit c5a79dd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions 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
;

8 changes: 8 additions & 0 deletions 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
;

0 comments on commit c5a79dd

Please sign in to comment.