module Sequel::Postgres::HStoreOpMethods

  1. lib/sequel/extensions/pg_hstore_ops.rb

Methods

Public Instance

  1. hstore

Public Instance methods

hstore()

Wrap the receiver in an HStoreOp so you can easily use the PostgreSQL hstore functions and operators with it.

[show source]
    # File lib/sequel/extensions/pg_hstore_ops.rb
360 def hstore
361   HStoreOp.new(self)
362 end