Table: brush_packs
Connected to
Section titled “Connected to”This table references:
user(ref) via columnowner_user_ref
Referenced by:
brush_pack_stamps— columnpack_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
id | uuid | no | Default gen_random_uuid() |
owner_user_ref | bigint | no | References user(ref) |
name | text | no | — |
source_file | text | yes | — |
created_at | timestamp | no | Default now() |
origin_server_id | uuid | yes | — |
Full DDL
Section titled “Full DDL”CREATE TABLE public.brush_packs ( id uuid DEFAULT gen_random_uuid() NOT NULL, owner_user_ref bigint NOT NULL, name text NOT NULL, source_file text, created_at timestamp with time zone DEFAULT now() NOT NULL, origin_server_id uuid);Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.