PgTimestamp
class PgTimestamp<T extends ColumnBaseConfig> extends PgColumn<PgTimestampHKT, T> { }
mapFromDriverValue: (value: string) => Date;
mapToDriverValue: (value: Date) => string;
readonly precision: number | undefined;
readonly withTimezone: boolean;
getSQLType(): string;
§Type Parameters
§
T extends ColumnBaseConfig
[src]§Extends
§
PgColumn<PgTimestampHKT, T>
[src]§Constructors
§
new PgTimestamp(table: AnyPgTable<{
[src]name: T["tableName"];
}>, config: PgTimestampBuilder<T>["config"])