Member Junction
    Preparing search index...
    interface BakedMigrationResult {
        affectedEntities: string[];
        fileName: string;
        handProcedural: string[];
        mode: "baked" | "preserved";
        pgSQL: string;
        status: ConversionStatus;
        unhandled: UnhandledStatement[];
    }
    Index

    Properties

    affectedEntities: string[]

    E(M) — entities whose native CodeGen was baked, in committed order.

    fileName: string
    handProcedural: string[]

    Hand-written procedural routines the migration carries (require human PG authoring).

    mode: "baked" | "preserved"

    'baked' — native CodeGen captured + assembled into pgSQL. 'preserved' — a transpile gap (unhandled statement / hand-procedural) made an auto-bake unsafe, so pgSQL is the hand-verified committed file (re-bake mode only).

    pgSQL: string

    The standalone baked .pg.sql text.

    Conversion status from convertMigration (e.g. needs-hand-authoring surfaces here).

    unhandled: UnhandledStatement[]

    Statements the AST transpiler could not handle (reported, never silently dropped).