Ir al contenido

Table: team_follows

Esta página aún no está disponible en tu idioma.

This table references:

  • user(ref) via column user_ref
  • teams(id) via column team_id
ColumnTypeNullableNotes
user_refbigintnoReferences user(ref)
team_iduuidnoReferences teams(id)
created_attimestampnoDefault now()
CREATE TABLE public.team_follows (
user_ref bigint NOT NULL,
team_id uuid NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL
);

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