Skip to content

Table: site_text

This table references:

  • user(ref) via column updated_by_user_ref
ColumnTypeNullableNotes
keytextno
languagetextno
valuetextno
updated_attimestampnoDefault now()
updated_by_user_refbigintyesReferences user(ref)
CREATE TABLE public.site_text (
key text NOT NULL,
language text NOT NULL,
value 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.