Home / Class/ SQLiteNumericBigInt Class — drizzle-orm Architecture

SQLiteNumericBigInt Class — drizzle-orm Architecture

Architecture documentation for the SQLiteNumericBigInt class in numeric.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  30a10847_ede4_b3c4_603c_08328930cbe9["SQLiteNumericBigInt"]
  c5af0e66_056b_2390_c3e9_ff89afff460c["numeric.ts"]
  30a10847_ede4_b3c4_603c_08328930cbe9 -->|defined in| c5af0e66_056b_2390_c3e9_ff89afff460c
  c5fd3409_414d_35b4_49ba_5b4643d4af8a["getSQLType()"]
  30a10847_ede4_b3c4_603c_08328930cbe9 -->|method| c5fd3409_414d_35b4_49ba_5b4643d4af8a

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/columns/numeric.ts lines 125–135

export class SQLiteNumericBigInt<T extends ColumnBaseConfig<'bigint', 'SQLiteNumericBigInt'>> extends SQLiteColumn<T> {
	static override readonly [entityKind]: string = 'SQLiteNumericBigInt';

	override mapFromDriverValue = BigInt;

	override mapToDriverValue = String;

	getSQLType(): string {
		return 'numeric';
	}
}

Domain

Frequently Asked Questions

What is the SQLiteNumericBigInt class?
SQLiteNumericBigInt is a class in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/columns/numeric.ts.
Where is SQLiteNumericBigInt defined?
SQLiteNumericBigInt is defined in drizzle-orm/src/sqlite-core/columns/numeric.ts at line 125.

Analyze Your Own Codebase

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

Try Supermodel Free