Table: user_password_history
Ce contenu n’est pas encore disponible dans votre langue.
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
user_ref | bigint | no | — |
password_hash | varchar(255) | no | — |
changed_at | timestamp | no | Default now() |
origin_server_id | uuid | yes | — |
Full DDL
Section titled “Full DDL”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.