Home / File/ all.ts — drizzle-orm Source File

all.ts — drizzle-orm Source File

Architecture documentation for all.ts, a typescript file in the drizzle-orm codebase. 12 imports, 1 dependents.

File typescript DrizzleORM SQLDialects 12 imports 1 dependents 1 functions

Entity Profile

Dependency Diagram

graph LR
  0bca2cbd_0e97_da69_ba34_0de360b77802["all.ts"]
  5c8a5ab6_4356_4d2f_782b_4e0b3b38b801["blob.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> 5c8a5ab6_4356_4d2f_782b_4e0b3b38b801
  b63ae1bd_82fa_b519_bd66_c68ae72bf362["blob"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> b63ae1bd_82fa_b519_bd66_c68ae72bf362
  e7326635_a1d9_22bf_400e_da3a7dd63899["custom.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> e7326635_a1d9_22bf_400e_da3a7dd63899
  39620cad_f66e_875c_a81a_b61f8f2ae0d8["customType"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> 39620cad_f66e_875c_a81a_b61f8f2ae0d8
  29728329_4422_ca9a_2652_18e0b18797f4["integer.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> 29728329_4422_ca9a_2652_18e0b18797f4
  a01677bd_65fa_8365_5beb_d1c903088c6c["integer"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> a01677bd_65fa_8365_5beb_d1c903088c6c
  c5af0e66_056b_2390_c3e9_ff89afff460c["numeric.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> c5af0e66_056b_2390_c3e9_ff89afff460c
  d28b7d19_5bf1_c039_a880_794b8dab622e["numeric"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> d28b7d19_5bf1_c039_a880_794b8dab622e
  f265b8e0_8c11_0dc5_3895_a9a09f511b37["real.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> f265b8e0_8c11_0dc5_3895_a9a09f511b37
  cc37ccf8_8333_749b_0736_4c8bba843a8b["real"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> cc37ccf8_8333_749b_0736_4c8bba843a8b
  a15f2cb7_4465_6310_5d15_9cfa4ad98d64["text.ts"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> a15f2cb7_4465_6310_5d15_9cfa4ad98d64
  4cd960dc_6f8e_74da_b19f_8bca1bc443a4["text"]
  0bca2cbd_0e97_da69_ba34_0de360b77802 --> 4cd960dc_6f8e_74da_b19f_8bca1bc443a4
  64ae061d_ed9a_c5f9_235a_3f31995a8d54["table.ts"]
  64ae061d_ed9a_c5f9_235a_3f31995a8d54 --> 0bca2cbd_0e97_da69_ba34_0de360b77802
  style 0bca2cbd_0e97_da69_ba34_0de360b77802 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { blob } from './blob.ts';
import { customType } from './custom.ts';
import { integer } from './integer.ts';
import { numeric } from './numeric.ts';
import { real } from './real.ts';
import { text } from './text.ts';

export function getSQLiteColumnBuilders() {
	return {
		blob,
		customType,
		integer,
		numeric,
		real,
		text,
	};
}

export type SQLiteColumnBuilders = ReturnType<typeof getSQLiteColumnBuilders>;

Domain

Subdomains

Frequently Asked Questions

What does all.ts do?
all.ts is a source file in the drizzle-orm codebase, written in typescript. It belongs to the DrizzleORM domain, SQLDialects subdomain.
What functions are defined in all.ts?
all.ts defines 1 function(s): getSQLiteColumnBuilders.
What does all.ts depend on?
all.ts imports 12 module(s): blob, blob.ts, custom.ts, customType, integer, integer.ts, numeric, numeric.ts, and 4 more.
What files import all.ts?
all.ts is imported by 1 file(s): table.ts.
Where is all.ts in the architecture?
all.ts is located at drizzle-orm/src/sqlite-core/columns/all.ts (domain: DrizzleORM, subdomain: SQLDialects, directory: drizzle-orm/src/sqlite-core/columns).

Analyze Your Own Codebase

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

Try Supermodel Free