Last active
February 14, 2018 08:03
-
-
Save shalvah/94139c27d10ba4b2140dc7f517cd5837 to your computer and use it in GitHub Desktop.
Twitter-Realtime-Likes
This file contains 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
let mongoose = require('mongoose'); | |
let Post = mongoose.model('Post', { | |
text: String, | |
posted_at: Date, | |
likes_count: Number, | |
author: String | |
}); | |
module.exports = Post; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment