prorm API Reference
    Preparing search index...

    Interface ImportForeignSchemaOptions

    Options for IMPORT FOREIGN SCHEMA

    interface ImportForeignSchemaOptions {
        localSchema?: string;
        limitTo?: string[];
        except?: string[];
        options?: Record<string, string>;
    }
    Index
    localSchema?: string

    Local schema to import tables into (defaults to 'public')

    limitTo?: string[]

    LIMIT TO – only import these remote tables

    except?: string[]

    EXCEPT – import all remote tables except these

    options?: Record<string, string>

    IMPORT FOREIGN SCHEMA level OPTIONS