/**
  * Rename the column.
  *
  * @param Blueprint $table
  * @param FieldType $from
  */
 public function renameColumn(Blueprint $table, FieldType $from)
 {
     $table->renameColumn($from->getColumnName(), $this->fieldType->getColumnName());
 }