Home / Type/ JsonCreateSequenceStatement Type — drizzle-orm Architecture

JsonCreateSequenceStatement Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

drizzle-kit/src/jsonStatements.ts lines 178–190

export interface JsonCreateSequenceStatement {
	type: 'create_sequence';
	name: string;
	schema: string;
	values: {
		increment?: string | undefined;
		minValue?: string | undefined;
		maxValue?: string | undefined;
		startWith?: string | undefined;
		cache?: string | undefined;
		cycle?: boolean | undefined;
	};
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free