Created
June 12, 2018 18:12
-
-
Save daniele-zurico/599f866262ac9cc7aa8babf39a1656bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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