Skip to content

Instantly share code, notes, and snippets.

@ManishPoduval
Created February 26, 2021 04:54
Show Gist options
  • Save ManishPoduval/a490ab0d6617b9504cf7826e4a638b91 to your computer and use it in GitHub Desktop.
Save ManishPoduval/a490ab0d6617b9504cf7826e4a638b91 to your computer and use it in GitHub Desktop.
Create this inside your models folder
const mongoose = require('mongoose');
let TodoSchema = new mongoose.Schema({
name: String,
description: String,
completed: Boolean,
})
let TodoModel = mongoose.model('todo', TodoSchema)
module.exports = TodoModel;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment