Table: federation_dispatch_state
Esta página aún no está disponible en tu idioma.
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | integer | no | — |
last_dispatched_activity_id | uuid | yes | — |
last_dispatched_at | timestamp | yes | — |
updated_at | timestamp | no | Default now() |
Constraints
Section titled “Constraints”CONSTRAINT federation_dispatch_state_id_check CHECK ((id = 1))
Full DDL
Section titled “Full DDL”CREATE TABLE public.federation_dispatch_state ( id integer NOT NULL, last_dispatched_activity_id uuid, last_dispatched_at timestamp with time zone, updated_at timestamp with time zone DEFAULT now() NOT NULL, CONSTRAINT federation_dispatch_state_id_check CHECK ((id = 1)));Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.