From ba086d33dbe3de6b2abfa79dd5d9fa49a30ca9d4 Mon Sep 17 00:00:00 2001 From: Chris Blanchard Date: Fri, 28 Aug 2015 19:07:00 +0100 Subject: [PATCH] Add instance method to update profile --- db/models/profile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/db/models/profile.js b/db/models/profile.js index 5724a31..60a02f2 100644 --- a/db/models/profile.js +++ b/db/models/profile.js @@ -6,6 +6,7 @@ var Schema = mongoose.Schema; var profileSchema = new Schema({ userId: { type: Number, required: true }, abilities: { + skulk: { type: Boolean, default: true }, lerk: { type: Boolean, default: false }, fade: { type: Boolean, default: false }, gorge: { type: Boolean, default: false },