# Safety Incident Types Permission

Add the `safety_incident_types.manage` permission to roles that should maintain the list of incident classifications.

## SQL Migration

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

Adjust the `WHERE` clause for other roles as needed.
