1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-19 19: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 : ""},

View File

@@ -20,7 +20,7 @@ X Rename `/client/naturalCrit` -> `/client/main`
X Move snippets into their new groups
- Replace pseudo-elements with encoded images
- Make hybrid editor and brewRenderer (with resize listeners)
- add /source/shareId route
X add /source/shareId route
- Add stats nav item
- make both ids indexes in mongoose
X Fix main Page