Skip to content

Table: user_password_history

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
user_refbigintno
password_hashvarchar(255)no
changed_attimestampnoDefault now()
origin_server_iduuidyes
CREATE TABLE public.user_password_history (
id uuid DEFAULT gen_random_uuid() NOT NULL,
user_ref bigint NOT NULL,
password_hash character varying(255) NOT NULL,
changed_at timestamp with time zone DEFAULT now() NOT NULL,
origin_server_id uuid
);

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