Skip to content

Instantly share code, notes, and snippets.

@mockra
Last active January 1, 2016 11:59
Show Gist options
  • Save mockra/8141793 to your computer and use it in GitHub Desktop.
Save mockra/8141793 to your computer and use it in GitHub Desktop.
var mongoose = require('mongoose');
var todoSchema = new mongoose.Schema({
title: { type: String, required: true },
is_completed: Boolean
});
module.exports = mongoose.model('Todo', todoSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment