Skip to content

Instantly share code, notes, and snippets.

@DapperFox
Created August 22, 2014 00:48
Show Gist options
  • Select an option

  • Save DapperFox/054cce7785dedeaebcfd to your computer and use it in GitHub Desktop.

Select an option

Save DapperFox/054cce7785dedeaebcfd to your computer and use it in GitHub Desktop.
mongoose schema to show Clayton
var mongoose = require('mongoose'),
Schema = mongoose.Schema,
ObjectId = Schema.ObjectId;
var RoomLayout = new Schema({
userID: ObjectId,
coordinates: Array,
type: String
});
module.exports = mongoose.model('RoomLayout', RoomLayout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment