Ensure all bonfires have names in account profile view. Add more aptly names state flag for future user data massaging.

This commit is contained in:
terakilobyte
2015-05-05 16:12:53 -04:00
parent 1df3b2671b
commit b73c7eac62
3 changed files with 42 additions and 5 deletions

View File

@@ -139,6 +139,9 @@ var userSchema = new mongoose.Schema({
type: Number,
default: 0
},
needsSomeDataModeled: { type: Boolean, default: false},
// needsMigration has been deprecated, use needsSomeDataModeled
needsMigration: { type: Boolean, default: true },
finishedWaypoints: { type: Boolean, default: false },
sendMonthlyEmail: { type: Boolean, default: true },