ORM::where_gt PHP Method

where_gt() public method

.. > clause to your query
public where_gt ( $column_name, $value = null )
    public function where_gt($column_name, $value = null)
    {
        return $this->_add_simple_where($column_name, '>', $value);
    }
ORM