aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/binary.rb
blob: e0ea2262168425fc08f6234cdd49e45d4e314767 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11






                                    



                   



         
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Binary < Value # :nodoc:
        def type
          :binary
        end

        def binary?
          true
        end
      end
    end
  end
end