Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.AlteredColumnBuilder

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
class kysely.AlteredColumnBuilder
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { AlteredColumnBuilder } = kysely;

Allows us to force consumers to do exactly one alteration to a column.

Basically, deny the following:

db.schema.alterTable('person').alterColumn('age', (ac) => ac)
db.schema.alterTable('person').alterColumn('age', (ac) => ac.dropNotNull().setNotNull())

Which would now throw a compilation error, instead of a runtime error.

Constructors

new
AlteredColumnBuilder(alterColumnNode: AlterColumnNode)