mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
66 lines
1.9 KiB
Markdown
66 lines
1.9 KiB
Markdown
# public.auth_identity
|
|
|
|
## Columns
|
|
|
|
| Name | Type | Default | Nullable | Children | Parents | Comment |
|
|
| ---- | ---- | ------- | -------- | -------- | ------- | ------- |
|
|
| createdAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | |
|
|
| providerId | varchar(255) | | false | | | |
|
|
| providerType | varchar(32) | | false | | | |
|
|
| updatedAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | |
|
|
| userId | uuid | | true | | [public.user](public.user.md) | |
|
|
|
|
## Constraints
|
|
|
|
| Name | Type | Definition |
|
|
| ---- | ---- | ---------- |
|
|
| auth_identity_createdAt_not_null | n | NOT NULL "createdAt" |
|
|
| auth_identity_pkey | PRIMARY KEY | PRIMARY KEY ("providerId", "providerType") |
|
|
| auth_identity_providerId_not_null | n | NOT NULL "providerId" |
|
|
| auth_identity_providerType_not_null | n | NOT NULL "providerType" |
|
|
| auth_identity_updatedAt_not_null | n | NOT NULL "updatedAt" |
|
|
| auth_identity_userId_fkey | FOREIGN KEY | FOREIGN KEY ("userId") REFERENCES "user"(id) |
|
|
|
|
## Indexes
|
|
|
|
| Name | Definition |
|
|
| ---- | ---------- |
|
|
| auth_identity_pkey | CREATE UNIQUE INDEX auth_identity_pkey ON public.auth_identity USING btree ("providerId", "providerType") |
|
|
|
|
## Relations
|
|
|
|
```mermaid
|
|
erDiagram
|
|
|
|
"public.auth_identity" }o--o| "public.user" : "FOREIGN KEY (#quot;userId#quot;) REFERENCES #quot;user#quot;(id)"
|
|
|
|
"public.auth_identity" {
|
|
timestamp_3__with_time_zone createdAt
|
|
varchar_255_ providerId
|
|
varchar_32_ providerType
|
|
timestamp_3__with_time_zone updatedAt
|
|
uuid userId FK
|
|
}
|
|
"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)
|