# Country Deductions Permission

To manage deduction settings that apply at the country level, grant the new `country_deductions.manage` permission. HR and Admin roles continue to use `deduction_settings.manage` for company level rules.

## SQL Migration

Update the `roles_permissions` table to add this permission to the roles that should manage national deductions:

```sql
UPDATE roles_permissions
SET permissions = JSON_SET(
  permissions,
  '$.country_deductions', JSON_ARRAY('manage')
)
WHERE role = 'Super Admin';
```

Adjust the `WHERE` clause for your environment to grant the permission to the appropriate role(s).
