Ir al contenido

Table: user_profiles

Esta página aún no está disponible en tu idioma.

ColumnTypeNullableNotes
user_refbigintno
display_nametextyes
biotextnoDefault ''::text
avatar_urltextyes
locationtextnoDefault ''::text
website_urltextyes
social_linksjsonbnoDefault '{}'::jsonb
origin_server_iduuidyes
created_attimestampnoDefault now()
updated_attimestampnoDefault now()
languagetextnoDefault ''::text
themetextnoDefault ''::text
hide_from_anonymousbooleannoDefault false
  • CONSTRAINT user_profiles_theme_check CHECK ((theme = ANY (ARRAY[''::text, 'light'::text, 'dark'::text])))
CREATE TABLE public.user_profiles (
user_ref bigint NOT NULL,
display_name text,
bio text DEFAULT ''::text NOT NULL,
avatar_url text,
location text DEFAULT ''::text NOT NULL,
website_url text,
social_links jsonb DEFAULT '{}'::jsonb NOT NULL,
origin_server_id uuid,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
language text DEFAULT ''::text NOT NULL,
theme text DEFAULT ''::text NOT NULL,
hide_from_anonymous boolean DEFAULT false NOT NULL,
CONSTRAINT user_profiles_theme_check CHECK ((theme = ANY (ARRAY[''::text, 'light'::text, 'dark'::text])))
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.