mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
chore: change sql parameter for custom roles to be a (name,org_id) tuple (#13480)
* chore: sql parameter to custom roles to be a (name,org) tuple CustomRole lookup takes (name,org_id) tuples as the search criteria.
This commit is contained in:
Generated
+5
@@ -73,6 +73,11 @@ CREATE TYPE login_type AS ENUM (
|
||||
|
||||
COMMENT ON TYPE login_type IS 'Specifies the method of authentication. "none" is a special case in which no authentication method is allowed.';
|
||||
|
||||
CREATE TYPE name_organization_pair AS (
|
||||
name text,
|
||||
organization_id uuid
|
||||
);
|
||||
|
||||
CREATE TYPE parameter_destination_scheme AS ENUM (
|
||||
'none',
|
||||
'environment_variable',
|
||||
|
||||
Reference in New Issue
Block a user