Sha256: a77250067b078d11e005defddbc25e5690017ce2a92c1d23cc7ba87aba6e5ce4
Contents?: true
Size: 364 Bytes
Versions: 144
Compression:
Stored size: 364 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module ConnectionAdapters module PostgreSQL module OID # :nodoc: class SpecializedString < Type::String # :nodoc: attr_reader :type def initialize(type, **options) @type = type super(**options) end end end end end end
Version data entries
144 entries across 139 versions & 11 rubygems