Skip to main content
Module

x/pgsql_ast_parser/mod.ts>CreateSequenceOptions

Yet another simple Postgres SQL parser
Go to Latest
interface CreateSequenceOptions
implements PGNode
import { type CreateSequenceOptions } from "https://deno.land/x/pgsql_ast_parser@10.5.2/mod.ts";

Properties

optional
as: DataTypeDef
optional
incrementBy: number
optional
minValue: "no minvalue" | number
optional
maxValue: "no maxvalue" | number
optional
startWith: number
optional
cache: number
optional
cycle: "cycle" | "no cycle"
optional
ownedBy: "none" | QColumn