Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created June 12, 2018 18:12
Show Gist options
  • Select an option

  • Save daniele-zurico/599f866262ac9cc7aa8babf39a1656bc to your computer and use it in GitHub Desktop.

Select an option

Save daniele-zurico/599f866262ac9cc7aa8babf39a1656bc to your computer and use it in GitHub Desktop.
import mongoose from "mongoose";
const PostSchema = new mongoose.Schema({
author: String,
comment: String
});
const Post = mongoose.model("posts", PostSchema);
export { Post };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment