Options to pass to Model on drop

interface DropOptions {
    benchmark?: boolean;
    cascade?: boolean;
    logging?: false | ((sql, timing?) => void);
}

Hierarchy (view full)

Properties

benchmark?: boolean

Pass query execution time in milliseconds as second argument to logging function (options.logging).

cascade?: boolean

Also drop all objects depending on this table, such as views. Only works in postgres

logging?: false | ((sql, timing?) => void)

A function that gets executed while running the query to log the sql.

Type declaration

    • (sql, timing?): void
    • Parameters

      • sql: string
      • Optional timing: number

      Returns void