Skip to content

Commit

Permalink
remove breaking adapter change (didn't realize it would blow up)
Browse files Browse the repository at this point in the history
  • Loading branch information
particlebanana committed Mar 16, 2016
1 parent cb9735f commit 23d219a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/waterline.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ Waterline.prototype.initialize = function(options, cb) {
identity = self.collections[coll].__proto__.tableName;
}

usedSchemas[identity] = _.pick(results.buildCollectionSchemas[coll], ['definition', 'attributes', 'meta']);
var schema = results.buildCollectionSchemas[coll];
usedSchemas[identity] = schema;
});

// Call the registerConnection method
Expand Down

0 comments on commit 23d219a

Please sign in to comment.