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:
Steven Masley
2024-06-06 15:36:37 -05:00
committed by GitHub
parent 1adc19b41f
commit e2b330fcba
12 changed files with 339 additions and 26 deletions
+5
View File
@@ -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',