PgCustomColumn
class PgCustomColumn<T extends ColumnBaseConfig> extends PgColumn<PgCustomColumnHKT, T> { }
constructor(table: AnyPgTable<{
name: T["tableName"];
}>, config: PgCustomColumnBuilder<T>["config"]);private mapFrom?;
private mapTo?;
private sqlName;
protected $pgColumnBrand: "PgCustomColumn";
getSQLType(): string;
mapFromDriverValue(value: T["driverParam"]): T["data"];
mapToDriverValue(value: T["data"]): T["driverParam"];
§Type Parameters
§
T extends ColumnBaseConfig
[src]§Extends
§
PgColumn<PgCustomColumnHKT, T>
[src]§Constructors
§
new PgCustomColumn(table: AnyPgTable<{
[src]name: T["tableName"];
}>, config: PgCustomColumnBuilder<T>["config"])