Merge pull request #125 from nashadalam/patch-1

Mongoose Adapter Single Index support
This commit is contained in:
Anatoliy Chakkaev 2012-09-25 21:10:16 -07:00
commit 2cbce0d843
1 changed files with 6 additions and 2 deletions

View File

@ -48,8 +48,12 @@ function MongooseAdapter(client) {
MongooseAdapter.prototype.define = function (descr) {
var props = {};
Object.keys(descr.properties).forEach(function (key) {
props[key] = descr.properties[key].type;
if (props[key].name === 'Text' || props[key].name === 'JSON') props[key] = String;
props[key] = {};
props[key].type = descr.properties[key].type;
if (props[key].type.name === 'Text' || props[key].type.name === 'JSON') props[key].type = String;
if (descr.properties[key].index) {
props[key].index = descr.properties[key].index;
}
});
var schema = new mongoose.Schema(props);
this._models[descr.model.modelName] = mongoose.model(descr.model.modelName, schema);