Home / Class/ SQLiteBigIntBuilder Class — drizzle-orm Architecture

SQLiteBigIntBuilder Class — drizzle-orm Architecture

Architecture documentation for the SQLiteBigIntBuilder class in blob.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  2720a241_662f_dbfa_afd5_5719d86cc8fc["SQLiteBigIntBuilder"]
  5c8a5ab6_4356_4d2f_782b_4e0b3b38b801["blob.ts"]
  2720a241_662f_dbfa_afd5_5719d86cc8fc -->|defined in| 5c8a5ab6_4356_4d2f_782b_4e0b3b38b801
  7cd24240_6bc3_5635_99a6_3ed648b0d232["constructor()"]
  2720a241_662f_dbfa_afd5_5719d86cc8fc -->|method| 7cd24240_6bc3_5635_99a6_3ed648b0d232
  1da97600_6eb8_eb26_d939_a51ea3011018["build()"]
  2720a241_662f_dbfa_afd5_5719d86cc8fc -->|method| 1da97600_6eb8_eb26_d939_a51ea3011018

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/columns/blob.ts lines 19–34

export class SQLiteBigIntBuilder<T extends ColumnBuilderBaseConfig<'bigint', 'SQLiteBigInt'>>
	extends SQLiteColumnBuilder<T>
{
	static override readonly [entityKind]: string = 'SQLiteBigIntBuilder';

	constructor(name: T['name']) {
		super(name, 'bigint', 'SQLiteBigInt');
	}

	/** @internal */
	override build<TTableName extends string>(
		table: AnySQLiteTable<{ name: TTableName }>,
	): SQLiteBigInt<MakeColumnConfig<T, TTableName>> {
		return new SQLiteBigInt<MakeColumnConfig<T, TTableName>>(table, this.config as ColumnBuilderRuntimeConfig<any>);
	}
}

Domain

Frequently Asked Questions

What is the SQLiteBigIntBuilder class?
SQLiteBigIntBuilder is a class in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/columns/blob.ts.
Where is SQLiteBigIntBuilder defined?
SQLiteBigIntBuilder is defined in drizzle-orm/src/sqlite-core/columns/blob.ts at line 19.

Analyze Your Own Codebase

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

Try Supermodel Free