Skip to content

Home > extract-pg-schema > MaterializedViewColumnType

MaterializedViewColumnType type

Column type in a materialized view.

Signature:

typescript
export type MaterializedViewColumnType = {
    fullName: string;
    kind: "base" | "range" | "domain" | "composite" | "enum";
};