add .id back to task schema

This commit is contained in:
Tyler Renelle 2013-11-02 16:40:00 -07:00
parent 8a9059aabf
commit ba8a8d2494

View file

@ -14,6 +14,7 @@ var _ = require('lodash');
var TaskSchema = {
_id:{type: String,'default': helpers.uuid},
id: String,
history: Array, // [{date:Date, value:Number}], // this causes major performance problems
text: String,
notes: {type: String, 'default': ''},