Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mshick committed Feb 5, 2014
2 parents 6f20779 + 39f8c9d commit f757988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
@@ -1,3 +1,4 @@
[![Stories in Ready](https://badge.waffle.io/1602/jugglingdb.png?label=ready)](https://waffle.io/1602/jugglingdb)
## About [<img src="https://secure.travis-ci.org/1602/jugglingdb.png" />](http://travis-ci.org/#!/1602/jugglingdb)

[JugglingDB(3)](http://jugglingdb.co) is cross-db ORM for nodejs, providing
Expand Down
2 changes: 1 addition & 1 deletion lib/adapters/memory.js
Expand Up @@ -28,7 +28,7 @@ Memory.prototype.connect = function(callback) {
Memory.prototype.define = function defineModel(descr) {
var m = descr.model.modelName;
this._models[m] = descr;
this.cache[m] = {};
this.cache[this.table(m)] = {};
this.ids[m] = 1;
};

Expand Down

0 comments on commit f757988

Please sign in to comment.