Skip to content

Table: email_template

This table references:

  • user(ref) via column updated_by_user_ref
ColumnTypeNullableNotes
template_nametextno
parttextno
bodytextno
updated_attimestampnoDefault now()
updated_by_user_refbigintyesReferences user(ref)
CREATE TABLE public.email_template (
template_name text NOT NULL,
part text NOT NULL,
body text NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
updated_by_user_ref bigint
);

Please see the schema overview for context. This document was last regenerated on 2026-09-23T03:23:00.434Z.