IDEMPIERE-4297 Improve test data (#303)

The GardenWorld Admin Not Advanced role was added as advanced by mistake
This commit is contained in:
Carlos Ruiz 2020-10-17 01:16:06 +02:00 committed by GitHub
parent fcf7a168b4
commit c0867c01ee
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-4297 Improve test data - not advanced role
-- Oct 16, 2020, 6:43:50 PM CEST
UPDATE AD_Role SET IsAccessAdvanced='N',Updated=TO_DATE('2020-10-16 18:43:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=200001
;
SELECT register_migration_script('202010161844_IDEMPIERE-4297_NotAdvancedRole.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-4297 Improve test data - not advanced role
-- Oct 16, 2020, 6:43:50 PM CEST
UPDATE AD_Role SET IsAccessAdvanced='N',Updated=TO_TIMESTAMP('2020-10-16 18:43:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=200001
;
SELECT register_migration_script('202010161844_IDEMPIERE-4297_NotAdvancedRole.sql') FROM dual
;