AppleLoginFields


Description

Apple Login returns some extra fields which are saved in this table.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id uuid 2147483647 gen_random_uuid()
realUserStatus int4 10 null

An Integer value that indicates whether the user appears to be a real person. The possible values are: 0 (or Unsupported), 1 (or Unknown), 2 (or LikelyReal).

IdentitiesId varchar 255 null
Identities.id AppleLoginFields_IdentitiesId_fkey C

Unique identifier returned by Apple for that particular user. This exists as part of the foreign composite key to Identities Table.

IdentitiesType enum_Identities_type 2147483647 null
Identities.type AppleLoginFields_IdentitiesId_fkey C

This will always be APPLE. This exists as part of the foreign composite key to Identities Table.

Indexes

Constraint Name Type Sort Column(s)
AppleLoginFields_pkey Primary key Asc id
AppleLoginFields_IdentitiesId_unique_index Must be unique Asc IdentitiesId

Check Constraints

Constraint Name Constraint
AppleLoginFields_IdentitiesType_check (("IdentitiesType" = 'APPLE'::"enum_Identities_type"))

Relationships