Aller au contenu

Table: user_totp_recovery_code

Ce contenu n’est pas encore disponible dans votre langue.

This table references:

  • user(ref) via column user_ref
ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
user_refbigintnoReferences user(ref)
code_hashbyteano
used_attimestampyes
created_attimestampnoDefault now()
CREATE TABLE public.user_totp_recovery_code (
id uuid DEFAULT gen_random_uuid() NOT NULL,
user_ref bigint NOT NULL,
code_hash bytea NOT NULL,
used_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now() NOT NULL
);

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