Home > extract-pg-schema > TableColumnType
TableColumnType type
Column type in a table.
Signature:
typescript
export type TableColumnType = {
fullName: string;
kind: "base" | "range" | "domain" | "composite" | "enum";
};