Last active
April 10, 2018 13:43
-
-
Save anthonytxie/425cc81f30dcfe039df633e851151789 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 commentSchema = new Schema({ | |
commentDate: { | |
type: Date, | |
index: true | |
}, | |
body: { | |
type: String | |
}, | |
subreddit: { | |
type: String | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment