# public.oauth_access_tokens ## Columns | Name | Type | Default | Nullable | Children | Parents | Comment | | ---- | ---- | ------- | -------- | -------- | ------- | ------- | | clientId | varchar | | false | | [public.oauth_clients](public.oauth_clients.md) | | | token | varchar | | false | | | | | userId | uuid | | false | | [public.user](public.user.md) | | ## Constraints | Name | Type | Definition | | ---- | ---- | ---------- | | FK_7234a36d8e49a1fa85095328845 | FOREIGN KEY | FOREIGN KEY ("userId") REFERENCES "user"(id) ON DELETE CASCADE | | FK_78b26968132b7e5e45b75876481 | FOREIGN KEY | FOREIGN KEY ("clientId") REFERENCES oauth_clients(id) ON DELETE CASCADE | | PK_dcd71f96a5d5f4bf79e67d322bf | PRIMARY KEY | PRIMARY KEY (token) | | oauth_access_tokens_clientId_not_null | n | NOT NULL "clientId" | | oauth_access_tokens_token_not_null | n | NOT NULL token | | oauth_access_tokens_userId_not_null | n | NOT NULL "userId" | ## Indexes | Name | Definition | | ---- | ---------- | | PK_dcd71f96a5d5f4bf79e67d322bf | CREATE UNIQUE INDEX "PK_dcd71f96a5d5f4bf79e67d322bf" ON public.oauth_access_tokens USING btree (token) | ## Relations ```mermaid erDiagram "public.oauth_access_tokens" }o--|| "public.oauth_clients" : "FOREIGN KEY (#quot;clientId#quot;) REFERENCES oauth_clients(id) ON DELETE CASCADE" "public.oauth_access_tokens" }o--|| "public.user" : "FOREIGN KEY (#quot;userId#quot;) REFERENCES #quot;user#quot;(id) ON DELETE CASCADE" "public.oauth_access_tokens" { varchar clientId FK varchar token uuid userId FK } "public.oauth_clients" { varchar_255_ clientSecret bigint clientSecretExpiresAt timestamp_3__with_time_zone createdAt json grantTypes varchar id varchar_255_ name json redirectUris varchar_255_ tokenEndpointAuthMethod timestamp_3__with_time_zone updatedAt } "public.user" { timestamp_3__with_time_zone createdAt boolean disabled varchar_255_ email varchar_32_ firstName uuid id date lastActiveAt varchar_32_ lastName boolean mfaEnabled text mfaRecoveryCodes text mfaSecret varchar_255_ password json personalizationAnswers varchar_128_ roleSlug FK json settings timestamp_3__with_time_zone updatedAt } ``` --- > Generated by [tbls](https://github.com/k1LoW/tbls)