* Close all connections used by this sequelize instance, and free all references so the instance can be garbage collected. * * Normally this is done on process exit, so you only need to call this method if you are creating multiple instances, and want * to garbage collect some of them. *
()
| 1209 | * @returns {Promise} |
| 1210 | */ |
| 1211 | close() { |
| 1212 | return this.connectionManager.close(); |
| 1213 | } |
| 1214 | |
| 1215 | normalizeDataType(Type) { |
| 1216 | let type = typeof Type === 'function' ? new Type() : Type; |