Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.CreateIndexNode

Kysely dialect for PostgreSQL using the Postgres.js client.
Latest
interface kysely.CreateIndexNode
implements OperationNode
import { type kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.4/deps.ts";
const { CreateIndexNode } = kysely;

Properties

readonly
kind: "CreateIndexNode"
readonly
name: IdentifierNode
readonly
optional
table: TableNode
readonly
optional
columns: OperationNode[]
readonly
optional
unique: boolean
readonly
optional
using: RawNode
readonly
optional
ifNotExists: boolean
readonly
optional
where: WhereNode
readonly
optional
nullsNotDistinct: boolean
variable kysely.CreateIndexNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.4/deps.ts";
const { CreateIndexNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is CreateIndexNode; create(name: string): CreateIndexNode; cloneWith(node: CreateIndexNode, props: CreateIndexNodeProps): CreateIndexNode; cloneWithColumns(node: CreateIndexNode, columns: OperationNode[]): CreateIndexNode; }>
import kysely.CreateIndexNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.4/deps.ts";
const { CreateIndexNode } = kysely;