prorm API Reference
    Preparing search index...

    Interface CreateExtensionOptions

    Options for creating a PostgreSQL extension

    interface CreateExtensionOptions {
        ifNotExists?: boolean;
        schema?: string;
        version?: string;
    }
    Index
    ifNotExists?: boolean

    If true, uses CREATE EXTENSION IF NOT EXISTS

    schema?: string

    Schema to install the extension into

    version?: string

    Version of the extension to install