Skip to content

Instantly share code, notes, and snippets.

@gkatsanos
Created November 23, 2014 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gkatsanos/475177b3403ab83939d9 to your computer and use it in GitHub Desktop.
Save gkatsanos/475177b3403ab83939d9 to your computer and use it in GitHub Desktop.
var MessageSchema = new Schema({
body: {
type: String,
default: '',
trim: true
},
location: {
lng: {
type: Number
},
lat: {
type: Number
}
},
created: {
type: Date,
default: Date.now
},
user: {
type: Schema.ObjectId,
ref: 'User'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment