Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PgEnumColumn

class PgEnumColumn<T extends ColumnBaseConfig> extends PgColumn<PgEnumColumnHKT, T> {
constructor(table: AnyPgTable<{
name: T["tableName"];
}
>
, config: PgEnumColumnBuilder<T>["config"]);
readonly enum: PgEnum<any>;
 
getSQLType(): string;
}

§Type Parameters

§Extends

§Constructors

§
new PgEnumColumn(table: AnyPgTable<{
name: T["tableName"];
}
>
, config: PgEnumColumnBuilder<T>["config"])
[src]

§Properties

§
enum: PgEnum<any>
[src]

§Methods

§
getSQLType(): string
[src]