/**
  * Change a table column dbType.
  *
  * @param string $columnName
  * @param string $newColumnType
  * @param array  $options
  *
  * @return $this
  */
 public function changeColumn($columnName, $newColumnType, $options = [])
 {
     $this->table->changeColumn($columnName, $newColumnType, $options);
     return $this;
 }