Created
November 11, 2014 09:21
-
-
Save chriswitko/e3c68b5863156d768d4f to your computer and use it in GitHub Desktop.
Simple following schema
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
| var mongoose = require('mongoose'); | |
| var Schema = mongoose.Schema; | |
| /* | |
| This document means that the user with numeric id 12345 | |
| has been followed by user 54321 since August 21. | |
| The last scan of user 12345, when user 54321 still showed up | |
| in the followers list, happened at 6am on August 23rd. | |
| At 7:50am that day, user 54321 was no longer following 12345. | |
| A document with no “end” field means that the “follower” is still following the “followee”. | |
| */ | |
| var followingSchema = new mongoose.Schema({ | |
| followee: {type : Schema.ObjectId, ref : 'User'}, | |
| follower: {type : Schema.ObjectId, ref : 'User'}, | |
| start: Date, | |
| last: Date, | |
| end: Date | |
| }); | |
| followingSchema.pre('save', function(next) { | |
| var following = this; | |
| return next(); | |
| }); | |
| module.exports = mongoose.model('Following', followingSchema); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment