/**
  * Now we have the requests answered, add the DatabasePatcher as it needs the db object
  *
  * @return boolean
  */
 public function checkRegistryRequestsAnswers()
 {
     $this->escort = \GemsEscort::getInstance();
     //Load the dbaModel
     $model = new \Gems_Model_DbaModel($this->db, $this->escort->getDatabasePaths());
     if ($this->project->databaseFileEncoding) {
         $model->setFileEncoding($this->project->databaseFileEncoding);
     }
     $this->dbaModel = $model;
     return true;
 }