Skip to content

Instantly share code, notes, and snippets.

@alesanabriav
Last active June 8, 2017 17:07
Show Gist options
  • Save alesanabriav/8a9d42fa55ecd2319e9e3cdf12e9b123 to your computer and use it in GitHub Desktop.
Save alesanabriav/8a9d42fa55ecd2319e9e3cdf12e9b123 to your computer and use it in GitHub Desktop.
mongoose model example
let postSchema = new mongoose.Schema({
title: { type: String },
author: { type: String },
body: { type: String }
)};
mongoose.model('Post', postSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment