Home / Type/ JsonAlterViewAddWithOptionStatement Type — drizzle-orm Architecture

JsonAlterViewAddWithOptionStatement Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

drizzle-kit/src/jsonStatements.ts lines 742–754

export type JsonAlterViewAddWithOptionStatement =
	& {
		type: 'alter_view_add_with_option';
		schema: string;
		name: string;
	}
	& ({
		materialized: true;
		with: MatViewWithOption;
	} | {
		materialized: false;
		with: ViewWithOption;
	});

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free