ORM::where_lt PHP Method

where_lt() public method

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