Aller au contenu

Table: user_totp

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

This table references:

  • user(ref) via column user_ref
ColumnTypeNullableNotes
user_refbigintnoReferences user(ref)
secret_encbyteano
confirmed_attimestampyes
created_attimestampnoDefault now()
last_used_attimestampyes
CREATE TABLE public.user_totp (
user_ref bigint NOT NULL,
secret_enc bytea NOT NULL,
confirmed_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now() NOT NULL,
last_used_at timestamp with time zone
);

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