Skip to content

Release 0.22.2 - hotfix

Compare
Choose a tag to compare
@romanstrobl romanstrobl released this 08 Oct 17:53
· 1432 commits to develop since this release
783058b

This hotfix release provides configuration of mobile token on operation level:

  • #682: Allow configuration of mobile token availability per operation

SQL Schema Update

The following database schema update is required for this release:

Oracle:

ALTER TABLE ns_operation_config ADD mobile_token_enabled NUMBER(1) DEFAULT 0 NOT NULL;

MySQL:

ALTER TABLE `ns_operation_config` ADD `mobile_token_enabled` BOOLEAN DEFAULT FALSE NOT NULL;

Configuration of operations

For each operation which requires the mobile token to be enabled, run following SQL update. Update ${operation_name} placehoder with actual operation name.

Oracle:

UPDATE ns_operation_config SET mobile_token_enabled=1 WHERE operation_name='${operation_name}';
COMMIT;

MySQL:

UPDATE ns_operation_config SET mobile_token_enabled=true WHERE operation_name='${operation_name}';
COMMIT;