Table: user
Esta página aún no está disponible en tu idioma.
Connected to
Section titled “Connected to”Referenced by:
brush_packs— columnowner_user_refdigest_queue— columnuser_refemail_verification_token— columnuser_reffederation_user_keys— columnsuser_ref,rotated_by_user_refmetadata_backfill_run— columnstarted_by_user_refresource_request— columnsrequester_user_ref,decided_by_user_refsaved_search— columnowner_user_refsearch_feedback— columnuser_refsearch_reindex_run— columnstarted_by_user_refsearch_visual_backfill_run— columnstarted_by_user_refsessions— columnimpersonated_by_user_refuser_totp— columnuser_refuser_totp_recovery_code— columnuser_ref
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
ref | bigint | no | — |
username | varchar(50) | yes | — |
password | varchar(255) | yes | — |
fullname | varchar(100) | yes | — |
email | varchar(100) | yes | — |
usergroup | bigint | yes | — |
last_active | timestamp | yes | — |
account_expires | timestamp | yes | — |
comments | text | yes | — |
password_last_change | timestamp | yes | — |
approved | bigint | no | Default 1 |
lang | varchar(11) | yes | — |
created | timestamp | yes | Default now() |
password_reset_hash | varchar(100) | yes | — |
origin | varchar(50) | yes | — |
actor_uri | text | yes | — |
signing_public_key_pem | text | yes | — |
signing_private_key_enc | bytea | yes | — |
encryption_public_key | bytea | yes | — |
encryption_private_key_enc | bytea | yes | — |
email_verified_at | timestamp | yes | — |
failed_login_count | integer | no | Default 0 |
lockout_until | timestamp | yes | — |
Constraints
Section titled “Constraints”CONSTRAINT user_approved_check CHECK ((approved = ANY (ARRAY[(0)::bigint, (1)::bigint, (2)::bigint, (3)::bigint])))
Full DDL
Section titled “Full DDL”CREATE TABLE public."user" ( ref bigint NOT NULL, username character varying(50), password character varying(255), fullname character varying(100), email character varying(100), usergroup bigint, last_active timestamp with time zone, account_expires timestamp with time zone, comments text, password_last_change timestamp with time zone, approved bigint DEFAULT 1 NOT NULL, lang character varying(11), created timestamp with time zone DEFAULT now(), password_reset_hash character varying(100), origin character varying(50), actor_uri text, signing_public_key_pem text, signing_private_key_enc bytea, encryption_public_key bytea, encryption_private_key_enc bytea, email_verified_at timestamp with time zone, failed_login_count integer DEFAULT 0 NOT NULL, lockout_until timestamp with time zone, CONSTRAINT user_approved_check CHECK ((approved = ANY (ARRAY[(0)::bigint, (1)::bigint, (2)::bigint, (3)::bigint]))));Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.