Table: user_follows
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
follower_user_ref | bigint | no | — |
followee_user_ref | bigint | no | — |
created_at | timestamp | no | Default now() |
origin_server_id | uuid | yes | — |
Constraints
Section titled “Constraints”CONSTRAINT user_follows_check CHECK ((follower_user_ref <> followee_user_ref))
Full DDL
Section titled “Full DDL”CREATE TABLE public.user_follows ( follower_user_ref bigint NOT NULL, followee_user_ref bigint NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, origin_server_id uuid, CONSTRAINT user_follows_check CHECK ((follower_user_ref <> followee_user_ref)));Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.