SQLiteTextConfig Type — drizzle-orm Architecture
Architecture documentation for the SQLiteTextConfig type/interface in text.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD c2c7da68_b159_ea43_1fab_1cdcc3c321f3["SQLiteTextConfig"] a15f2cb7_4465_6310_5d15_9cfa4ad98d64["text.ts"] c2c7da68_b159_ea43_1fab_1cdcc3c321f3 -->|defined in| a15f2cb7_4465_6310_5d15_9cfa4ad98d64 style c2c7da68_b159_ea43_1fab_1cdcc3c321f3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/sqlite-core/columns/text.ts lines 117–128
export type SQLiteTextConfig<
TMode extends 'text' | 'json' = 'text' | 'json',
TEnum extends readonly string[] | string[] | undefined = readonly string[] | string[] | undefined,
TLength extends number | undefined = number | undefined,
> = TMode extends 'text' ? {
mode?: TMode;
length?: TLength;
enum?: TEnum;
}
: {
mode?: TMode;
};
Defined In
Source
Frequently Asked Questions
What is the SQLiteTextConfig type?
SQLiteTextConfig is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/columns/text.ts.
Where is SQLiteTextConfig defined?
SQLiteTextConfig is defined in drizzle-orm/src/sqlite-core/columns/text.ts at line 117.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free