1 2 3 4 5 6 7 8
var mongoose = require('mongoose'); module.exports = mongoose.model('todoCollect', { text: { type: String, default: '' } });