Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created November 30, 2011 19:40
Show Gist options
  • Save deedubs/1410468 to your computer and use it in GitHub Desktop.
Save deedubs/1410468 to your computer and use it in GitHub Desktop.
var mongoose = require('mongoose')
, Schema = mongoose.Schema
, ObjectId = Schema.ObjectId;
var QuestSchema = new Schema({
name: String
, loc: {
lng: Number
, lat: Number
}
});
module.exports = mongoose.model('Quest', QuestSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment