Table: tag_follows
Esta página aún no está disponible en tu idioma.
Connected to
Section titled “Connected to”This table references:
user(ref) via columnuser_ref
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
user_ref | bigint | no | References user(ref) |
tag | text | no | — |
created_at | timestamp | no | Default now() |
Constraints
Section titled “Constraints”CONSTRAINT tag_follows_tag_length CHECK (((length(tag) > 0) AND (length(tag) <= 200)))
Full DDL
Section titled “Full DDL”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.