Skip to content

Home > extract-pg-schema > ForeignTableColumn > source

ForeignTableColumn.source property

This will contain a "link" to the source table or view and column, if it can be determined.

Signature:

typescript
source: {
        schema: string;
        table: string;
        column: string;
    } | null;