Member Junction
    Preparing search index...

    A single planned teardown operation: either DELETE the dependent rows, or SET NULL the nullable FK column (unlinking the dependent so a shared row survives).

    interface TeardownPlanItem {
        col: string;
        op: "delete" | "setnull";
        table: string;
        where: string;
    }
    Index

    Properties

    Properties

    col: string
    op: "delete" | "setnull"
    table: string
    where: string