'use strict'; const url = require('url'); const Path = require('path'); const retry = require('retry-as-promised'); const clsBluebird = require('cls-bluebird'); const Utils = require('./utils'); const Model = require('./model'); const DataTypes = require('./data-types'); const Deferrable = require('./deferrable'); const ModelManager = require('./model-manager'); const QueryInterface = require('./query-interface'); const Transaction = require('./transaction'); const QueryTypes = require('./query-types'); const TableHints = require('./table-hints'); const sequelizeErrors = require('./errors'); const Promise = require('./promise'); const Hooks = require('./hooks'); const Association = require('./associations/index'); const Validator = require('./utils/validator-extras').validator; const _ = require('lodash'); const Op = require('./operators'); /** * This is the main class, the entry point to sequelize. To use it, you just need to import sequelize: * * ```js * const Sequelize = require('sequelize'); * ``` * * In addition to sequelize, the connection library for the dialect you want to use should also be installed in your project. You don't need to import it however, as sequelize will take care of that. */ class Sequelize { /** * Instantiate sequelize with name of database, username and password * * #### Example usage * * ```javascript * // without password and options * const sequelize = new Sequelize('database', 'username') * * // without options * const sequelize = new Sequelize('database', 'username', 'password') * * // without password / with blank password * const sequelize = new Sequelize('database', 'username', null, {}) * * // with password and options * const sequelize = new Sequelize('my_database', 'john', 'doe', {}) * * // with database, username, and password in the options object * const sequelize = new Sequelize({ database, username, password }); * * // with uri * const sequelize = new Sequelize('mysql://localhost:3306/database', {}) * ``` * * @param {String} [database] The name of the database * @param {String} [username=null] The username which is used to authenticate against the database. * @param {String} [password=null] The password which is used to authenticate against the database. Supports SQLCipher encryption for SQLite. * @param {Object} [options={}] An object with options. * @param {String} [options.host='localhost'] The host of the relational database. * @param {Integer} [options.port=] The port of the relational database. * @param {String} [options.username=null] The username which is used to authenticate against the database. * @param {String} [options.password=null] The password which is used to authenticate against the database. * @param {String} [options.database=null] The name of the database * @param {String} [options.dialect] The dialect of the database you are connecting to. One of mysql, postgres, sqlite and mssql. * @param {String} [options.dialectModulePath=null] If specified, load the dialect library from this path. For example, if you want to use pg.js instead of pg when connecting to a pg database, you should specify 'pg.js' here * @param {Object} [options.dialectOptions] An object of additional options, which are passed directly to the connection library * @param {String} [options.storage] Only used by sqlite. Defaults to ':memory:' * @param {String} [options.protocol='tcp'] The protocol of the relational database. * @param {Object} [options.define={}] Default options for model definitions. See sequelize.define for options * @param {Object} [options.query={}] Default options for sequelize.query * @param {Object} [options.set={}] Default options for sequelize.set * @param {Object} [options.sync={}] Default options for sequelize.sync * @param {string} [options.timezone='+00:00'] The timezone used when converting a date from the database into a JavaScript date. The timezone is also used to SET TIMEZONE when connecting to the server, to ensure that the result of NOW, CURRENT_TIMESTAMP and other time related functions have in the right timezone. For best cross platform performance use the format +/-HH:MM. Will also accept string versions of timezones used by moment.js (e.g. 'America/Los_Angeles'); this is useful to capture daylight savings time changes. * @param {boolean} [options.standardConformingStrings=true] The PostgreSQL `standard_conforming_strings` session parameter. Set to `false` to not set the option. WARNING: Setting this to false may expose vulnerabilities and is not recommended! * @param {Function} [options.logging=console.log] A function that gets executed every time Sequelize would log something. * @param {Boolean} [options.benchmark=false] Pass query execution time in milliseconds as second argument to logging function (options.logging). * @param {Boolean} [options.omitNull=false] A flag that defines if null values should be passed to SQL queries or not. * @param {Boolean} [options.native=false] A flag that defines if native library shall be used or not. Currently only has an effect for postgres * @param {Boolean} [options.replication=false] Use read / write replication. To enable replication, pass an object, with two properties, read and write. Write should be an object (a single server for handling writes), and read an array of object (several servers to handle reads). Each read/write server can have the following properties: `host`, `port`, `username`, `password`, `database` * @param {Object} [options.pool] sequelize connection pool configuration * @param {Integer} [options.pool.max=5] Maximum number of connection in pool * @param {Integer} [options.pool.min=0] Minimum number of connection in pool * @param {Integer} [options.pool.idle=10000] The maximum time, in milliseconds, that a connection can be idle before being released. Use with combination of evict for proper working, for more details read https://github.com/coopernurse/node-pool/issues/178#issuecomment-327110870 * @param {Integer} [options.pool.acquire=10000] The maximum time, in milliseconds, that pool will try to get connection before throwing error * @param {Integer} [options.pool.evict=10000] The time interval, in milliseconds, for evicting stale connections. Set it to 0 to disable this feature. * @param {Boolean} [options.pool.handleDisconnects=true] Controls if pool should handle connection disconnect automatically without throwing errors * @param {Function} [options.pool.validate] A function that validates a connection. Called with client. The default function checks that client is an object, and that its state is not disconnected * @param {Boolean} [options.quoteIdentifiers=true] Set to `false` to make table names and attributes case-insensitive on Postgres and skip double quoting of them. WARNING: Setting this to false may expose vulnerabilities and is not recommended! * @param {String} [options.transactionType='DEFERRED'] Set the default transaction type. See `Sequelize.Transaction.TYPES` for possible options. Sqlite only. * @param {String} [options.isolationLevel] Set the default transaction isolation level. See `Sequelize.Transaction.ISOLATION_LEVELS` for possible options. * @param {Object} [options.retry] Set of flags that control when a query is automatically retried. * @param {Array} [options.retry.match] Only retry a query if the error matches one of these strings. * @param {Integer} [options.retry.max] How many times a failing query is automatically retried. Set to 0 to disable retrying on SQL_BUSY error. * @param {Boolean} [options.typeValidation=false] Run built in type validators on insert and update, e.g. validate that arguments passed to integer fields are integer-like. * @param {Object|Boolean} [options.operatorsAliases=true] String based operator alias, default value is true which will enable all operators alias. Pass object to limit set of aliased operators or false to disable completely. * */ constructor(database, username, password, options) { let config; if (arguments.length === 1 && typeof database === 'object') { // new Sequelize({ ... options }) options = database; config = _.pick(options, 'host', 'port', 'database', 'username', 'password'); } else if (arguments.length === 1 && typeof database === 'string' || arguments.length === 2 && typeof username === 'object') { // new Sequelize(URI, { ... options }) config = {}; options = username || {}; const urlParts = url.parse(arguments[0]); options.dialect = urlParts.protocol.replace(/:$/, ''); options.host = urlParts.hostname; if (options.dialect === 'sqlite' && urlParts.pathname && urlParts.pathname.indexOf('/:memory') !== 0) { const path = Path.join(options.host, urlParts.pathname); options.storage = options.storage || path; } if (urlParts.pathname) { config.database = urlParts.pathname.replace(/^\//, ''); } if (urlParts.port) { options.port = urlParts.port; } if (urlParts.auth) { const authParts = urlParts.auth.split(':'); config.username = authParts[0]; if (authParts.length > 1) config.password = authParts.slice(1).join(':'); } } else { // new Sequelize(database, username, password, { ... options }) options = options || {}; config = {database, username, password}; } Sequelize.runHooks('beforeInit', config, options); this.options = Object.assign({ dialect: null, dialectModulePath: null, host: 'localhost', protocol: 'tcp', define: {}, query: {}, sync: {}, timezone: '+00:00', standardConformingStrings: true, // eslint-disable-next-line no-console logging: console.log, omitNull: false, native: false, replication: false, ssl: undefined, pool: {}, quoteIdentifiers: true, hooks: {}, retry: { max: 5, match: [ 'SQLITE_BUSY: database is locked' ] }, transactionType: Transaction.TYPES.DEFERRED, isolationLevel: null, databaseVersion: 0, typeValidation: false, benchmark: false, operatorsAliases: true }, options || {}); if (!this.options.dialect) { throw new Error('Dialect needs to be explicitly supplied as of v4.0.0'); } if (this.options.dialect === 'postgresql') { this.options.dialect = 'postgres'; } if (this.options.dialect === 'sqlite' && this.options.timezone !== '+00:00') { throw new Error('Setting a custom timezone is not supported by SQLite, dates are always returned as UTC. Please remove the custom timezone parameter.'); } if (this.options.logging === true) { Utils.deprecate('The logging-option should be either a function or false. Default: console.log'); this.options.logging = console.log; } this._setupHooks(options.hooks); if (['', null, false].indexOf(config.password) > -1 || typeof config.password === 'undefined') { config.password = null; } this.config = { database: config.database, username: config.username, password: config.password, host: config.host || this.options.host, port: config.port || this.options.port, pool: this.options.pool, protocol: this.options.protocol, native: this.options.native, ssl: this.options.ssl, replication: this.options.replication, dialectModulePath: this.options.dialectModulePath, keepDefaultTimezone: this.options.keepDefaultTimezone, dialectOptions: this.options.dialectOptions }; let Dialect; // Requiring the dialect in a switch-case to keep the // require calls static. (Browserify fix) switch (this.getDialect()) { case 'mssql': Dialect = require('./dialects/mssql'); break; case 'mysql': Dialect = require('./dialects/mysql'); break; case 'postgres': Dialect = require('./dialects/postgres'); break; case 'sqlite': Dialect = require('./dialects/sqlite'); break; default: throw new Error('The dialect ' + this.getDialect() + ' is not supported. Supported dialects: mssql, mysql, postgres, and sqlite.'); } this.dialect = new Dialect(this); this.dialect.QueryGenerator.typeValidation = options.typeValidation; if (this.options.operatorsAliases === true) { Utils.deprecate('String based operators are now deprecated. Please use Symbol based operators for better security, read more at http://docs.sequelizejs.com/manual/tutorial/querying.html#operators'); this.dialect.QueryGenerator.setOperatorsAliases(Op.LegacyAliases); //Op.LegacyAliases should be removed and replaced by Op.Aliases by v5.0 use } else { this.dialect.QueryGenerator.setOperatorsAliases(this.options.operatorsAliases); } this.queryInterface = new QueryInterface(this); /** * Models are stored here under the name given to `sequelize.define` */ this.models = {}; this.modelManager = new ModelManager(this); this.connectionManager = this.dialect.connectionManager; this.importCache = {}; this.test = { _trackRunningQueries: false, _runningQueries: 0, trackRunningQueries() { this._trackRunningQueries = true; }, verifyNoRunningQueries() { if (this._runningQueries > 0) throw new Error('Expected 0 running queries. '+this._runningQueries+' queries still running'); } }; Sequelize.runHooks('afterInit', this); } refreshTypes() { this.connectionManager.refreshTypeParser(DataTypes); } /** * Returns the specified dialect. * * @return {String} The specified dialect. */ getDialect() { return this.options.dialect; } /** * Returns an instance of QueryInterface. * @method getQueryInterface * @memberOf Sequelize * @return {QueryInterface} An instance (singleton) of QueryInterface. */ getQueryInterface() { this.queryInterface = this.queryInterface || new QueryInterface(this); return this.queryInterface; } /** * Define a new model, representing a table in the DB. * * The table columns are defined by the object that is given as the second argument. Each key of the object represents a column * * @param {String} modelName The name of the model. The model will be stored in `sequelize.models` under this name * @param {Object} attributes An object, where each attribute is a column of the table. See {@link Model.init} * @param {Object} [options] These options are merged with the default define options provided to the Sequelize constructor and passed to Model.init() * * @see {@link Model.init} for a more comprehensive specification of the `options` and `attributes` objects. * @see The manual section about defining models * @see {@link DataTypes} For a list of possible data types * * @return {Model} * * @example * sequelize.define('modelName', { * columnA: { * type: Sequelize.BOOLEAN, * validate: { * is: ["[a-z]",'i'], // will only allow letters * max: 23, // only allow values <= 23 * isIn: { * args: [['en', 'zh']], * msg: "Must be English or Chinese" * } * }, * field: 'column_a' * // Other attributes here * }, * columnB: Sequelize.STRING, * columnC: 'MY VERY OWN COLUMN TYPE' * }) * * sequelize.models.modelName // The model will now be available in models under the name given to define */ define(modelName, attributes, options) { options = options || {}; options.modelName = modelName; options.sequelize = this; const model = class extends Model {}; model.init(attributes, options); return model; } /** * Fetch a Model which is already defined * * @param {String} modelName The name of a model defined with Sequelize.define * @throws Will throw an error if the model is not defined (that is, if sequelize#isDefined returns false) * @return {Model} */ model(modelName) { if (!this.isDefined(modelName)) { throw new Error(modelName + ' has not been defined'); } return this.modelManager.getModel(modelName); } /** * Checks whether a model with the given name is defined * * @param {String} modelName The name of a model defined with Sequelize.define * @return {Boolean} */ isDefined(modelName) { const models = this.modelManager.models; return models.filter(model => model.name === modelName).length !== 0; } /** * Imports a model defined in another file * * Imported models are cached, so multiple calls to import with the same path will not load the file multiple times * * See https://github.com/sequelize/express-example for a short example of how to define your models in separate files so that they can be imported by sequelize.import * @param {String} path The path to the file that holds the model you want to import. If the part is relative, it will be resolved relatively to the calling file * @return {Model} */ import(path) { // is it a relative path? if (Path.normalize(path) !== Path.resolve(path)) { // make path relative to the caller const callerFilename = Utils.stack()[1].getFileName(); const callerPath = Path.dirname(callerFilename); path = Path.resolve(callerPath, path); } if (!this.importCache[path]) { let defineCall = arguments.length > 1 ? arguments[1] : require(path); if (typeof defineCall === 'object') { // ES6 module compatibility defineCall = defineCall.default; } this.importCache[path] = defineCall(this, DataTypes); } return this.importCache[path]; } /** * Execute a query on the DB, with the possibility to bypass all the sequelize goodness. * * By default, the function will return two arguments: an array of results, and a metadata object, containing number of affected rows etc. Use `.spread` to access the results. * * If you are running a type of query where you don't need the metadata, for example a `SELECT` query, you can pass in a query type to make sequelize format the results: * * ```js * sequelize.query('SELECT...').spread((results, metadata) => { * // Raw query - use spread * }); * * sequelize.query('SELECT...', { type: sequelize.QueryTypes.SELECT }).then(results => { * // SELECT query - use then * }) * ``` * * @method query * @param {String} sql * @param {Object} [options={}] Query options. * @param {Boolean} [options.raw] If true, sequelize will not try to format the results of the query, or build an instance of a model from the result * @param {Transaction} [options.transaction=null] The transaction that the query should be executed under * @param {QueryTypes} [options.type='RAW'] The type of query you are executing. The query type affects how results are formatted before they are passed back. The type is a string, but `Sequelize.QueryTypes` is provided as convenience shortcuts. * @param {Boolean} [options.nest=false] If true, transforms objects with `.` separated property names into nested objects using [dottie.js](https://github.com/mickhansen/dottie.js). For example { 'user.username': 'john' } becomes { user: { username: 'john' }}. When `nest` is true, the query type is assumed to be `'SELECT'`, unless otherwise specified * @param {Boolean} [options.plain=false] Sets the query type to `SELECT` and return a single row * @param {Object|Array} [options.replacements] Either an object of named parameter replacements in the format `:param` or an array of unnamed replacements to replace `?` in your SQL. * @param {Object|Array} [options.bind] Either an object of named bind parameter in the format `_param` or an array of unnamed bind parameter to replace `$1, $2, ...` in your SQL. * @param {Boolean} [options.useMaster=false] Force the query to use the write pool, regardless of the query type. * @param {Function} [options.logging=false] A function that gets executed while running the query to log the sql. * @param {new Model()} [options.instance] A sequelize instance used to build the return instance * @param {Model} [options.model] A sequelize model used to build the returned model instances (used to be called callee) * @param {Object} [options.retry] Set of flags that control when a query is automatically retried. * @param {Array} [options.retry.match] Only retry a query if the error matches one of these strings. * @param {Integer} [options.retry.max] How many times a failing query is automatically retried. * @param {String} [options.searchPath=DEFAULT] An optional parameter to specify the schema search_path (Postgres only) * @param {Boolean} [options.supportsSearchPath] If false do not prepend the query with the search_path (Postgres only) * @param {Boolean} [options.mapToModel=false] Map returned fields to model's fields if `options.model` or `options.instance` is present. Mapping will occur before building the model instance. * @param {Object} [options.fieldMap] Map returned fields to arbitrary names for `SELECT` query type. * * @return {Promise} * * @see {@link Model.build} for more information about instance option. */ query(sql, options) { options = _.assign({}, this.options.query, options); const retryOptions = _.assignIn({}, this.options.retry, options.retry || {}); let bindParameters; return Promise.resolve(retry(retryParameters => Promise.try(() => { const isFirstTry = retryParameters.current === 1; if (options.instance && !options.model) { options.model = options.instance.constructor; } // map raw fields to model attributes if (options.mapToModel) { options.fieldMap = _.get(options, 'model.fieldAttributeMap', {}); } if (typeof sql === 'object') { if (sql.values !== undefined) { if (options.replacements !== undefined) { throw new Error('Both `sql.values` and `options.replacements` cannot be set at the same time'); } options.replacements = sql.values; } if (sql.bind !== undefined) { if (options.bind !== undefined) { throw new Error('Both `sql.bind` and `options.bind` cannot be set at the same time'); } options.bind = sql.bind; } if (sql.query !== undefined) { sql = sql.query; } } sql = sql.trim(); if (!options.instance && !options.model) { options.raw = true; } if (options.replacements && options.bind) { throw new Error('Both `replacements` and `bind` cannot be set at the same time'); } if (options.replacements) { if (Array.isArray(options.replacements)) { sql = Utils.format([sql].concat(options.replacements), this.options.dialect); } else { sql = Utils.formatNamedParameters(sql, options.replacements, this.options.dialect); } } if (options.bind) { const bindSql = this.dialect.Query.formatBindParameters(sql, options.bind, this.options.dialect); sql = bindSql[0]; bindParameters = bindSql[1]; } options = _.defaults(options, { logging: this.options.hasOwnProperty('logging') ? this.options.logging : console.log, searchPath: this.options.hasOwnProperty('searchPath') ? this.options.searchPath : 'DEFAULT' }); if (options.transaction === undefined && Sequelize._cls) { options.transaction = Sequelize._cls.get('transaction'); } if (!options.type) { if (options.model || options.nest || options.plain) { options.type = QueryTypes.SELECT; } else { options.type = QueryTypes.RAW; } } if (options.transaction && options.transaction.finished) { const error = new Error(`${options.transaction.finished} has been called on this transaction(${options.transaction.id}), you can no longer use it. (The rejected query is attached as the \'sql\' property of this error)`); error.sql = sql; return Promise.reject(error); } if (isFirstTry && this.test._trackRunningQueries) { this.test._runningQueries++; } //if dialect doesn't support search_path or dialect option //to prepend searchPath is not true delete the searchPath option if ( !this.dialect.supports.searchPath || !this.options.dialectOptions || !this.options.dialectOptions.prependSearchPath || options.supportsSearchPath === false ) { delete options.searchPath; } else if (!options.searchPath) { //if user wants to always prepend searchPath (dialectOptions.preprendSearchPath = true) //then set to DEFAULT if none is provided options.searchPath = 'DEFAULT'; } return options.transaction ? options.transaction.connection : this.connectionManager.getConnection(options); }).then(connection => { const query = new this.dialect.Query(connection, this, options); return query.run(sql, bindParameters) .finally(() => { if (this.test._trackRunningQueries) { this.test._runningQueries--; } if (!options.transaction) { return this.connectionManager.releaseConnection(connection); } }); }), retryOptions)); } /** * Execute a query which would set an environment or user variable. The variables are set per connection, so this function needs a transaction. * Only works for MySQL. * * @method set * @param {Object} variables Object with multiple variables. * @param {Object} options Query options. * @param {Transaction} options.transaction The transaction that the query should be executed under * * @memberof Sequelize * @return {Promise} */ set(variables, options) { // Prepare options options = _.extend({}, this.options.set, typeof options === 'object' && options || {}); if (this.options.dialect !== 'mysql') { throw new Error('sequelize.set is only supported for mysql'); } if (!options.transaction || !(options.transaction instanceof Transaction) ) { throw new TypeError('options.transaction is required'); } // Override some options, since this isn't a SELECT options.raw = true; options.plain = true; options.type = 'SET'; // Generate SQL Query const query = 'SET '+ _.map(variables, (v, k) => '@'+k +' := '+ (typeof v === 'string' ? '"'+v+'"' : v)).join(', '); return this.query(query, options); } /** * Escape value. * * @param {String} value * @return {String} */ escape(value) { return this.getQueryInterface().escape(value); } /** * Create a new database schema. * * Note, that this is a schema in the [postgres sense of the word](http://www.postgresql.org/docs/9.1/static/ddl-schemas.html), * not a database table. In mysql and sqlite, this command will do nothing. * * @see {@link Model.schema} * @param {String} schema Name of the schema * @param {Object} options={} * @param {Boolean|function} options.logging A function that logs sql queries, or false for no logging * @return {Promise} */ createSchema(schema, options) { return this.getQueryInterface().createSchema(schema, options); } /** * Show all defined schemas * * Note, that this is a schema in the [postgres sense of the word](http://www.postgresql.org/docs/9.1/static/ddl-schemas.html), * not a database table. In mysql and sqlite, this will show all tables. * @param {Object} options={} * @param {Boolean|function} options.logging A function that logs sql queries, or false for no logging * @return {Promise} */ showAllSchemas(options) { return this.getQueryInterface().showAllSchemas(options); } /** * Drop a single schema * * Note, that this is a schema in the [postgres sense of the word](http://www.postgresql.org/docs/9.1/static/ddl-schemas.html), * not a database table. In mysql and sqlite, this drop a table matching the schema name * @param {String} schema Name of the schema * @param {Object} options={} * @param {Boolean|function} options.logging A function that logs sql queries, or false for no logging * @return {Promise} */ dropSchema(schema, options) { return this.getQueryInterface().dropSchema(schema, options); } /** * Drop all schemas * * Note,that this is a schema in the [postgres sense of the word](http://www.postgresql.org/docs/9.1/static/ddl-schemas.html), * not a database table. In mysql and sqlite, this is the equivalent of drop all tables. * @param {Object} options={} * @param {Boolean|function} options.logging A function that logs sql queries, or false for no logging * @return {Promise} */ dropAllSchemas(options) { return this.getQueryInterface().dropAllSchemas(options); } /** * Sync all defined models to the DB. * * @param {Object} [options={}] * @param {Boolean} [options.force=false] If force is true, each Model will run `DROP TABLE IF EXISTS`, before it tries to create its own table * @param {RegExp} [options.match] Match a regex against the database name before syncing, a safety check for cases where force: true is used in tests but not live code * @param {Boolean|function} [options.logging=console.log] A function that logs sql queries, or false for no logging * @param {String} [options.schema='public'] The schema that the tables should be created in. This can be overriden for each table in sequelize.define * @param {String} [options.searchPath=DEFAULT] An optional parameter to specify the schema search_path (Postgres only) * @param {Boolean} [options.hooks=true] If hooks is true then beforeSync, afterSync, beforeBulkSync, afterBulkSync hooks will be called * @param {Boolean} [options.alter=false] Alters tables to fit models. Not recommended for production use. Deletes data in columns that were removed or had their type changed in the model. * @return {Promise} */ sync(options) { options = _.clone(options) || {}; options.hooks = options.hooks === undefined ? true : !!options.hooks; options = _.defaults(options, this.options.sync, this.options); if (options.match) { if (!options.match.test(this.config.database)) { return Promise.reject(new Error(`Database "${this.config.database}" does not match sync match parameter "${options.match}"`)); } } return Promise.try(() => { if (options.hooks) { return this.runHooks('beforeBulkSync', options); } }).then(() => { if (options.force) { return this.drop(options); } }).then(() => { const models = []; // Topologically sort by foreign key constraints to give us an appropriate // creation order this.modelManager.forEachModel(model => { if (model) { models.push(model); } else { // DB should throw an SQL error if referencing inexistant table } }); return Promise.each(models, model => model.sync(options)); }).then(() => { if (options.hooks) { return this.runHooks('afterBulkSync', options); } }).return(this); } /** * Truncate all tables defined through the sequelize models. This is done * by calling Model.truncate() on each model. * * @param {object} [options] The options passed to Model.destroy in addition to truncate * @param {Boolean|function} [options.transaction] * @param {Boolean|function} [options.logging] A function that logs sql queries, or false for no logging * @return {Promise} * * @see {@link Model.truncate} for more information */ truncate(options) { const models = []; this.modelManager.forEachModel(model => { if (model) { models.push(model); } }, { reverse: false }); const truncateModel = model => model.truncate(options); if (options && options.cascade) { return Promise.each(models, truncateModel); } else { return Promise.map(models, truncateModel); } } /** * Drop all tables defined through this sequelize instance. This is done by calling Model.drop on each model * @see {@link Model.drop} for options * * @param {object} options The options passed to each call to Model.drop * @param {Boolean|function} options.logging A function that logs sql queries, or false for no logging * @return {Promise} */ drop(options) { const models = []; this.modelManager.forEachModel(model => { if (model) { models.push(model); } }, { reverse: false }); return Promise.each(models, model => model.drop(options)); } /** * Test the connection by trying to authenticate * * @error 'Invalid credentials' if the authentication failed (even if the database did not respond at all...) * @return {Promise} */ authenticate(options) { return this.query('SELECT 1+1 AS result', _.assign({ raw: true, plain: true }, options)).return(); } databaseVersion(options) { return this.getQueryInterface().databaseVersion(options); } /** * Get the fn for random based on the dialect * * @return {Sequelize.fn} */ random() { const dialect = this.getDialect(); if (_.includes(['postgres', 'sqlite'], dialect)) { return this.fn('RANDOM'); } else { return this.fn('RAND'); } } /** * Creates an object representing a database function. This can be used in search queries, both in where and order parts, and as default values in column definitions. * If you want to refer to columns in your function, you should use `sequelize.col`, so that the columns are properly interpreted as columns and not a strings. * * Convert a user's username to upper case * ```js * instance.updateAttributes({ * username: self.sequelize.fn('upper', self.sequelize.col('username')) * }) * ``` * * @see {@link Model.findAll} * @see {@link Sequelize.define} * @see {@link Sequelize.col} * @method fn * * @param {String} fn The function you want to call * @param {any} args All further arguments will be passed as arguments to the function * * @since v2.0.0-dev3 * @memberof Sequelize * @return {Sequelize.fn} * @example