ORM::max PHP Method

max() public method

Will return the max value of the choosen column.
public max ( $column )
    public function max($column)
    {
        return $this->_call_aggregate_db_function(__FUNCTION__, $column);
    }
ORM