auth.sso_providers
| # | Name | Type | Nullable | Default | PK |
|---|---|---|---|---|---|
| 1 | id | uuid | NO | — | PK |
| 2 | resource_id | text | YES | — | |
| 3 | created_at | timestamp with time zone | YES | — | |
| 4 | updated_at | timestamp with time zone | YES | — |
Indexes
| Name | Definition | Unique | Primary | Size |
|---|---|---|---|---|
| sso_providers_pkey | CREATE UNIQUE INDEX sso_providers_pkey ON auth.sso_providers USING btree (id) | ✓ | ✓ | 8192 bytes |
| sso_providers_resource_id_idx | CREATE UNIQUE INDEX sso_providers_resource_id_idx ON auth.sso_providers USING btree (lower(resource_id)) | ✓ | 8192 bytes |
Constraints
| Name | Type | Definition |
|---|---|---|
| resource_id not empty | CHECK | CHECK (((resource_id = NULL::text) OR (char_length(resource_id) > 0))) |
| sso_providers_pkey | PRIMARY KEY | PRIMARY KEY (id) |