IDEMPIERE-4806 System Configurator window must be Advanced (#755)

This commit is contained in:
Carlos Ruiz 2021-07-01 15:03:43 +02:00 committed by GitHub
parent d7286128bb
commit c4444bef5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-4806 System Configurator window must be Advanced
-- Jun 30, 2021, 7:51:57 PM CEST
UPDATE AD_Tab SET IsAdvancedTab='Y',Updated=TO_DATE('2021-06-30 19:51:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=50009
;
SELECT register_migration_script('202106301952_IDEMPIERE-4806.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-4806 System Configurator window must be Advanced
-- Jun 30, 2021, 7:51:57 PM CEST
UPDATE AD_Tab SET IsAdvancedTab='Y',Updated=TO_TIMESTAMP('2021-06-30 19:51:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=50009
;
SELECT register_migration_script('202106301952_IDEMPIERE-4806.sql') FROM dual
;