function addChapter(obj, callback) {
  return knex('chapters')
  .insert(obj)
  .returning('*')
  .then((chapter) => {