不要怂,就是干,撸起袖子干!

Commit 5c0733bc by sdepold

allow definition of sqlite storage

1 parent e8105cd1
Showing with 1 additions and 1 deletions
......@@ -5,7 +5,7 @@ var Utils = require("../../utils")
module.exports = (function() {
var ConnectorManager = function(sequelize, config) {
this.sequelize = sequelize
this.database = new sqlite3.Database(':memory:')
this.database = new sqlite3.Database(sequelize.options.storage || ':memory:')
}
Utils._.extend(ConnectorManager.prototype, require("../connector-manager").prototype)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!