( 607, 'EMERGENCY_CLOSING', oils_i18n_gettext( 607,
'Create and manage Emergency Closings', 'ppl', 'description' )),
(608, 'APPLY_WORKSTATION_SETTING',
- oils_i18n_gettext(608, 'APPLY_WORKSTATION_SETTING', 'ppl', 'description')),
+ oils_i18n_gettext(608, 'Allows a user to apply values to workstation settings', 'ppl', 'description')),
( 609, 'MANAGE_CUSTOM_PERM_GRP_TREE', oils_i18n_gettext( 609,
'Allows a user to manage custom permission group lists.', 'ppl', 'description' )),
( 610, 'CLEAR_PURCHASE_REQUEST', oils_i18n_gettext(610,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+UPDATE permission.perm_list
+ SET description = oils_i18n_gettext(
+ '608',
+ 'Allows a user to apply values to workstation settings',
+ 'ppl', 'description')
+ WHERE code = 'APPLY_WORKSTATION_SETTING' and description = 'APPLY_WORKSTATION_SETTING';
+
+COMMIT;