Module: ROM::SQL::Types::PG

Defined in:
lib/rom/sql/types/pg.rb

Constant Summary collapse

Array =
Dry::Types::Definition
.new(Sequel::Postgres::JSONArray)
.constructor(Sequel.method(:pg_json))
Hash =
Dry::Types::Definition
.new(Sequel::Postgres::JSONHash)
.constructor(Sequel.method(:pg_json))
JSON =
Array | Hash
Bytea =
Dry::Types::Definition
.new(Sequel::SQL::Blob)
.constructor(Sequel::SQL::Blob.method(:new))