Sha256: 996319cf05cbef39aa5a8ed1ceaff8f0e5448090b3c3c151dc263611189caec7
Contents?: true
Size: 362 Bytes
Versions: 51
Compression:
Stored size: 362 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
51 entries across 51 versions & 7 rubygems