I'm calling user.save() on an object, where I set user.signup_date = null;
user.first_name = null;
user.signup_date = null;
user.save();
But when I look at the user in the mongodb it still has the signup_date and first_name set...how do I effectively set this field as empty or null?