function isFreshDb(cb) {
  models.User.countDocuments(function (err, res) {
    if (err) throw err;
    if (res === 0) {
      return cb(null, true);