Home / Function/ gelTableCreator() — drizzle-orm Function Reference

gelTableCreator() — drizzle-orm Function Reference

Architecture documentation for the gelTableCreator() function in table.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  72658dbf_d6ad_e4f0_60d2_1375a785226f["gelTableCreator()"]
  cbe7af57_41be_454d_306f_02d0e6f81949["table.ts"]
  72658dbf_d6ad_e4f0_60d2_1375a785226f -->|defined in| cbe7af57_41be_454d_306f_02d0e6f81949
  e52caf0d_6511_67ab_71ab_401ba052d941["gelTableWithSchema()"]
  72658dbf_d6ad_e4f0_60d2_1375a785226f -->|calls| e52caf0d_6511_67ab_71ab_401ba052d941
  style 72658dbf_d6ad_e4f0_60d2_1375a785226f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/gel-core/table.ts lines 253–257

export function gelTableCreator(customizeTableName: (name: string) => string): GelTableFn {
	return (name, columns, extraConfig) => {
		return gelTableWithSchema(customizeTableName(name) as typeof name, columns, extraConfig, undefined, name);
	};
}

Domain

Subdomains

Frequently Asked Questions

What does gelTableCreator() do?
gelTableCreator() is a function in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/table.ts.
Where is gelTableCreator() defined?
gelTableCreator() is defined in drizzle-orm/src/gel-core/table.ts at line 253.
What does gelTableCreator() call?
gelTableCreator() calls 1 function(s): gelTableWithSchema.

Analyze Your Own Codebase

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

Try Supermodel Free