Home / Type/ JsonAlterColumnDropGeneratedStatement Type — drizzle-orm Architecture

JsonAlterColumnDropGeneratedStatement Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  25a16a5a_b74f_53a4_f816_4a3f300396de["JsonAlterColumnDropGeneratedStatement"]
  31231534_0090_8d6c_18c0_6c37edc6b269["jsonStatements.ts"]
  25a16a5a_b74f_53a4_f816_4a3f300396de -->|defined in| 31231534_0090_8d6c_18c0_6c37edc6b269
  style 25a16a5a_b74f_53a4_f816_4a3f300396de fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-kit/src/jsonStatements.ts lines 596–609

export interface JsonAlterColumnDropGeneratedStatement {
	type: 'alter_table_alter_column_drop_generated';
	tableName: string;
	columnName: string;
	schema: string;
	newDataType: string;
	columnDefault: string;
	columnOnUpdate: boolean;
	columnNotNull: boolean;
	columnAutoIncrement: boolean;
	columnPk: boolean;
	columnGenerated?: { as: string; type: 'stored' | 'virtual' };
	oldColumn?: Column;
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free