/**
  * Sets an array of foreign keys waiting to be committed.
  *
  * @param array $foreignKeys
  *
  * @return $this
  */
 public function setForeignKeys(array $foreignKeys)
 {
     $this->table->setForeignKeys($foreignKeys);
     return $this;
 }