# Country Holidays Permission

Super admins can manage national holidays for each country. Grant the new `country_holidays.manage` permission to additional roles if needed.

## SQL Migration

Add the permission to the `roles_permissions` table:

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

Modify the `WHERE` clause to apply this permission to other roles in your system.
