Aller au contenu

Table: tag_follows

Ce contenu n’est pas encore disponible dans votre langue.

This table references:

  • user(ref) via column user_ref
ColumnTypeNullableNotes
user_refbigintnoReferences user(ref)
tagtextno
created_attimestampnoDefault now()
  • CONSTRAINT tag_follows_tag_length CHECK (((length(tag) > 0) AND (length(tag) <= 200)))
CREATE TABLE public.tag_follows (
user_ref bigint NOT NULL,
tag text NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT tag_follows_tag_length CHECK (((length(tag) > 0) AND (length(tag) <= 200)))
);

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