1 2 3 4 5 6 7 8 9 10 11 12 13
const mongoose = require('mongoose'); // mongdb entry schema const todoItemSchema = new mongoose.Schema({ _id: mongoose.Schema.Types.ObjectId, item: { type: String, required: true }, date: String }); // export schema module.exports = mongoose.model('TodoItem', todoItemSchema);