Skip to content

Instantly share code, notes, and snippets.

@dimuthu
Created February 10, 2020 09:25
Show Gist options
  • Save dimuthu/405796247326597fd418fb70cd7a3292 to your computer and use it in GitHub Desktop.
Save dimuthu/405796247326597fd418fb70cd7a3292 to your computer and use it in GitHub Desktop.
const mongo = require('mongoose');
const Schema = mongo.Schema;
const todoSchema = new Schema({
title: String,
completed: Boolean,
});
module.exports = mongo.model('Todo', todoSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment