PlaylistSchema.statics = {
  load: function (id, cb) {
    this.findOne({
      _id: id
    }).populate('user', 'name lastname username').exec(cb);