prorm API Reference
    Preparing search index...

    Interface FdwForeignTableOptions

    A foreign table: which server it lives on, its columns, and the remote object it maps to.

    interface FdwForeignTableOptions {
        serverName: string;
        schema?: string;
        columns: Record<string, FdwForeignTableColumnDef>;
        options?: Record<string, string>;
        ifNotExists?: boolean;
    }
    Index
    serverName: string
    schema?: string
    columns: Record<string, FdwForeignTableColumnDef>
    options?: Record<string, string>
    ifNotExists?: boolean