function addUser(obj, callback) {
  return knex('users')
  .insert(obj)
  .returning('*')
  .then((user) => {