Home / Type/ JsonAlterColumnTypeStatement Type — drizzle-orm Architecture

JsonAlterColumnTypeStatement Type — drizzle-orm Architecture

Architecture documentation for the JsonAlterColumnTypeStatement type/interface in jsonStatements.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  7a1b44f0_5378_cfe9_f22c_0b634a4efb4a["JsonAlterColumnTypeStatement"]
  6139f734_8ada_c641_9fec_9a55cfdf376f["jsonStatements.ts"]
  7a1b44f0_5378_cfe9_f22c_0b634a4efb4a -->|defined in| 6139f734_8ada_c641_9fec_9a55cfdf376f
  style 7a1b44f0_5378_cfe9_f22c_0b634a4efb4a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-kit/src/jsonStatements.ts lines 461–474

export interface JsonAlterColumnTypeStatement {
	type: 'alter_table_alter_column_set_type';
	tableName: string;
	columnName: string;
	newDataType: string;
	oldDataType: string;
	schema: string;
	columnDefault: string;
	columnOnUpdate: boolean;
	columnNotNull: boolean;
	columnAutoIncrement: boolean;
	columnPk: boolean;
	columnGenerated?: { as: string; type: 'stored' | 'virtual' };
}

Frequently Asked Questions

What is the JsonAlterColumnTypeStatement type?
JsonAlterColumnTypeStatement is a type/interface in the drizzle-orm codebase, defined in drizzle-kit/src/jsonStatements.ts.
Where is JsonAlterColumnTypeStatement defined?
JsonAlterColumnTypeStatement is defined in drizzle-kit/src/jsonStatements.ts at line 461.

Analyze Your Own Codebase

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

Try Supermodel Free