prorm API Reference
    Preparing search index...

    Interface ForeignServerOptions

    Options for CREATE FOREIGN SERVER

    interface ForeignServerOptions {
        fdw: string;
        options?: Record<string, string>;
        version?: string;
        ifNotExists?: boolean;
    }
    Index
    fdw: string

    The FDW name, e.g. 'postgres_fdw', 'redis_fdw', 'file_fdw'

    options?: Record<string, string>

    Server-level OPTIONS key/value pairs

    version?: string

    Optional server version string

    ifNotExists?: boolean

    Use CREATE FOREIGN SERVER IF NOT EXISTS