Guest User

Untitled

a guest
Jan 5th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const mongoose = require('mongoose');
  2. const NoteSchema = new mongoose.Schema({
  3. title: String,
  4. description: String
  5. });
  6. module.exports = mongoose.model('Note', NoteSchema);
Add Comment
Please, Sign In to add comment