Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var mongoose = require("mongoose");
  2.  
  3. var Schema = mongoose.Schema;
  4.  
  5. var todoSchema = new Schema({
  6. title: String,
  7. date: String,
  8. completed: String,
  9. });
  10.  
  11. module.exports = mongoose.model("todo", todoSchema);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement