acammies
2018-04-12 2bb27d957c0cc995c0276be7a098ea4635806955
removed important from model
1 files modified
3 ■■■■ changed files
server/api/todo/todo.model.js 3 ●●●● patch | view | raw | blame | history
server/api/todo/todo.model.js
@@ -5,8 +5,7 @@
const TodoSchema = new Schema({
  title: String,
  completed: Boolean,
  important: Boolean
  completed: Boolean
});
module.exports = mongoose.model('Todo', TodoSchema);