Home / Class/ "all_columns" Class — drizzle-orm Architecture

"all_columns" Class — drizzle-orm Architecture

Architecture documentation for the "all_columns" class in 0000_puzzling_flatman.sql from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  357562a8_fd96_fc3e_e98a_cdacb159511f["#quot;all_columns#quot;"]
  7225de55_0706_a3fd_b2d7_bc5a46be9ddb["0000_puzzling_flatman.sql"]
  357562a8_fd96_fc3e_e98a_cdacb159511f -->|defined in| 7225de55_0706_a3fd_b2d7_bc5a46be9ddb

Relationship Graph

Source Code

integration-tests/drizzle2/pg/0000_puzzling_flatman.sql lines 1–37

CREATE TABLE IF NOT EXISTS "all_columns" (
	"smallint" smallint,
	"smallint_def" smallint DEFAULT 10,
	"integer" integer,
	"integer_def" integer DEFAULT 10,
	"numeric" numeric,
	"numeric3" numeric,
	"numeric4" numeric(7, 7),
	"numeridef" numeric DEFAULT '100',
	"bigint" bigint,
	"bigintdef" bigint DEFAULT 100,
	"boolean" boolean,
	"boolean_def" boolean DEFAULT true,
	"text" text,
	"textdef" text DEFAULT 'text',
	"varchar" varchar,
	"varchardef" varchar DEFAULT 'text',
	"serial" serial NOT NULL,
	"bigserial" bigserial NOT NULL,
	"decimal" numeric(100, 2),
	"decimaldef" numeric(100, 2) DEFAULT '100.0',
	"doublePrecision" double precision,
	"doublePrecisiondef" double precision DEFAULT 100,
	"real" real,
	"realdef" real DEFAULT 100,
	"time2" time(6) with time zone,
	"timedefnow" time DEFAULT now(),
	"timestamp" timestamp,
	"timestamp2" timestamp (6) with time zone,
	"timestamp3" timestamp with time zone,
	"timestamp4" timestamp (4),
	"timestampdef" timestamp DEFAULT now(),
	"date" date,
	"datedef" date DEFAULT now(),
	"interval" interval,
	"intervaldef" interval DEFAULT '10 days'
);

Frequently Asked Questions

What is the "all_columns" class?
"all_columns" is a class in the drizzle-orm codebase, defined in integration-tests/drizzle2/pg/0000_puzzling_flatman.sql.
Where is "all_columns" defined?
"all_columns" is defined in integration-tests/drizzle2/pg/0000_puzzling_flatman.sql at line 1.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free