Specify adapter name

This commit is contained in:
Anatoliy Chakkaev 2013-01-30 22:15:32 +07:00
parent 65a0baa633
commit 718b7fd320
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ exports.initialize = function initializeSchema(schema, callback) {
* MySQL adapter
*/
function MySQL(client) {
this.name = 'mysql';
this._models = {};
this.client = client;
}