mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
* feat: add hidden enterprise cmd command to list roles This includes custom roles, and has a json ouput option for more granular permissions
6 lines
221 B
SQL
6 lines
221 B
SQL
ALTER TABLE custom_roles
|
|
-- This column is nullable, meaning no organization scope
|
|
ADD COLUMN organization_id uuid;
|
|
|
|
COMMENT ON COLUMN custom_roles.organization_id IS 'Roles can optionally be scoped to an organization'
|