Table: email_template
Connected to
Section titled “Connected to”This table references:
user(ref) via columnupdated_by_user_ref
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
template_name | text | no | — |
part | text | no | — |
body | text | no | — |
updated_at | timestamp | no | Default now() |
updated_by_user_ref | bigint | yes | References user(ref) |
Full DDL
Section titled “Full DDL”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.