Member Junction
    Preparing search index...
    interface IncrementalBakerOptions {
        coreSchema?: string;
        db: BakerWorkingDB;
        schema?: string;
        transpiler: TSQLToPGTranspiler;
    }
    Index

    Properties

    coreSchema?: string

    MJ core schema substituted for ${mjSchema}. Defaults to __mj.

    Separate from schema, which is the APP's schema: an Open App migration references core as ${mjSchema} and itself as ${flyway:defaultSchema}, and for every app those differ. The baked body is EXECUTED against the working database, so an unresolved macro is not cosmetic — it fails the apply and halts the bake chain (issue #3838).

    schema?: string

    Target schema for the baked output and search_path. Defaults to __mj.

    transpiler: TSQLToPGTranspiler