getOne(id) {
    return new this.UsersModel()
    .query()
    .where(this.context.column(`id`), id)
    .then(function(users) { return users[0]; });