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

    Type Alias ConflictHandler

    ConflictHandler:
        | "skip"
        | "overwrite"
        | ((conflict: SwapConflict) => boolean | Promise<boolean>)

    What to do when the target already holds data. 'skip' (the default) leaves it alone, 'overwrite' replaces it, or decide per target with a callback returning true to overwrite.