Created
July 19, 2018 11:47
-
-
Save sanath-kumar/ace4ab170c801b39a9c777dfd7e5ea80 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
| const mongoose = require('mongoose'); | |
| const {Schema} = mongoose; | |
| const MessageSchema = new Schema({ | |
| 'handle' : String, | |
| 'message' : String, | |
| 'created' : Date | |
| }) | |
| module.exports = mongoose.model('message',MessageSchema); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment