ORM::where_lt PHP Метод

where_lt() публичный Метод

.. < 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