ORM::min PHP Method

min() public method

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