/**
  * Exposes the protected getDropColumnSQL method.
  *
  * @param   string  $table  The table name.
  * @param   string  $name   The name of the field to drop.
  *
  * @return  string
  *
  * @since   12.1
  */
 public function getDropColumnSQL($table, $name)
 {
     return parent::getDropColumnSQL($table, $name);
 }