clean up User.js a little

pull/357/head
Quincy Larson 2015-04-24 03:04:53 -07:00
parent 32d1a605ff
commit 12fbc41761
1 changed files with 1 additions and 4 deletions

View File

@ -18,10 +18,6 @@ var userSchema = new mongoose.Schema({
github: String,
linkedin: String,
tokens: Array,
finishedWaypoints: {
type: Boolean,
default: false
},
progressTimestamps: {
type: Array,
default: []
@ -144,6 +140,7 @@ var userSchema = new mongoose.Schema({
default: 0
},
needsMigration: { type: Boolean, default: true },
finishedWaypoints: { type: Boolean, default: false },
challengesHash: {}
});