/**
  * Renames the database table.
  *
  * @param string $newTableName
  *
  * @return $this
  */
 public function rename($newTableName)
 {
     $this->table->rename($newTableName);
     return $this;
 }