module Sequel::Postgres::JSONOpMethods

  1. lib/sequel/extensions/pg_json_ops.rb

Methods

Public Instance

  1. pg_json
  2. pg_jsonb

Public Instance methods

pg_json()

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

[show source]
     # File lib/sequel/extensions/pg_json_ops.rb
1344 def pg_json
1345   JSONOp.new(self)
1346 end
pg_jsonb()

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

[show source]
     # File lib/sequel/extensions/pg_json_ops.rb
1350 def pg_jsonb
1351   JSONBOp.new(self)
1352 end