sql-switch - v1.0.1
    Preparing search index...

    Interface SwapConflict

    Something the migration is about to overwrite, passed to an onConflict callback.

    interface SwapConflict {
        kind: "table" | "file";
        schema: string;
        table?: string;
    }
    Index
    kind: "table" | "file"

    table on the way up (a Postgres table), file on the way down (a local .db).

    schema: string
    table?: string

    only set when kind is table