Private
Optional
[COMPLETES_Indicates if the query completes the transaction Internal only
Optional
benchmarkPass query execution time in milliseconds as second argument to logging function (options.logging).
Optional
cascadeTruncates all tables that have foreign-key references to the named table, or to any tables added to the group due to CASCADE.
false
Optional
connectionThe connection on which this query must be run. Mutually exclusive with Transactionable.transaction.
Can be used to ensure that a query is run on the same connection as a previous query, which is useful when configuring session options.
Specifying this option takes precedence over CLS Transactions. If a transaction is running in the current AsyncLocalStorage context, it will be ignored in favor of the specified connection.
Optional
hooksIf false
the applicable hooks will not be called.
The default value depends on the context.
true
Optional
loggingA function that gets executed while running the query to log the sql.
Optional
timing: numberOptional
restartAutomatically restart sequences owned by columns of the truncated table
false
Optional
transactionThe transaction in which this query must be run. Mutually exclusive with Transactionable.connection.
If the Sequelize disableClsTransactions option has not been set to true, and a transaction is running in the current AsyncLocalStorage context, that transaction will be used, unless null or another Transaction is manually specified here.
Optional
withoutMost dialects will not allow you to truncate a table while other tables have foreign key references to it (even if they are empty). This option will disable those checks while truncating all tables, and re-enable them afterwards.
This option is currently only supported for MySQL, SQLite, and MariaDB.
Postgres can use TruncateOptions.cascade to achieve a similar goal.
If you're experiencing this problem in other dialects, consider using Sequelize.destroyAll instead.
The options accepted by Model.truncate.