1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-18 23:11:29 +00:00

Adding both the share and edit ids as unique indexes, should speed up DB query time

This commit is contained in:
Scott Tolksdorf
2016-05-14 13:15:46 -04:00
parent c1d7443c87
commit 9c1fd5b13a
2 changed files with 3 additions and 3 deletions

View File

@@ -3,8 +3,8 @@ var shortid = require('shortid');
var _ = require('lodash');
var HomebrewSchema = mongoose.Schema({
shareId : {type : String, default: shortid.generate},
editId : {type : String, default: shortid.generate},
shareId : {type : String, default: shortid.generate, index: { unique: true }},
editId : {type : String, default: shortid.generate, index: { unique: true }},
title : {type : String, default : ""},
text : {type : String, default : ""},