Queries::modifyColumn PHP Method

modifyColumn() public method

public modifyColumn ( $table, $column, $attributes )
    public function modifyColumn($table, $column, $attributes)
    {
        if (!$this->_db->modifyColumn($table, $column, $attributes)) {
            throw new Exception('There was a problem modifying the column ' . htmlspecialchars($column));
        }
    }