Table: federation_peer_suggestions
Ce contenu n’est pas encore disponible dans votre langue.
Connected to
Section titled “Connected to”This table references:
federation_peers(id) via columnsource_peer_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
source_peer_id | uuid | no | References federation_peers(id) |
suggested_url | text | no | — |
suggested_display_name | text | no | — |
suggested_public_key | text | no | — |
suggested_fingerprint | text | no | — |
cached_at | timestamp | no | Default now() |
Full DDL
Section titled “Full DDL”CREATE TABLE public.federation_peer_suggestions ( id uuid DEFAULT gen_random_uuid() NOT NULL, source_peer_id uuid NOT NULL, suggested_url text NOT NULL, suggested_display_name text NOT NULL, suggested_public_key text NOT NULL, suggested_fingerprint text NOT NULL, cached_at timestamp with time zone DEFAULT now() NOT NULL);Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.