Merge pull request #165 from tgriesser/master

allow socketPath for mysql config
This commit is contained in:
Anatoliy Chakkaev 2012-12-12 12:46:12 -08:00
commit 963d393089
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ exports.initialize = function initializeSchema(schema, callback) {
port: s.port || 3306,
user: s.username,
password: s.password,
debug: s.debug
debug: s.debug,
socketPath: s.socketPath
});
schema.adapter = new MySQL(schema.client);